ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilContainerSelectionExplorer.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
26 {
28  protected string $target_type;
29 
30  public function __construct(
31  string $a_target
32  ) {
33  global $DIC;
34 
35  $this->access = $DIC->access();
36  $this->lng = $DIC->language();
37  $tree = $DIC->repositoryTree();
38 
39  parent::__construct($a_target);
40 
41  $this->tree = $tree;
42  $this->root_id = $this->tree->readRootId();
43  $this->order_column = "title";
44 
45  $this->setSessionExpandVariable("ref_repexpand");
46 
47  $this->addFilter("root");
48  $this->addFilter("cat");
49  $this->addFilter("grp");
50  $this->addFilter("crs");
51 
53  $this->setFiltered(true);
55 
56  $this->checkPermissions(true);
57  }
58 
59  public function setTargetType(string $a_type): void
60  {
61  $this->target_type = $a_type;
62  }
63 
64  public function getTargetType(): string
65  {
66  return $this->target_type;
67  }
68 
69  public function isClickable(string $type, int $ref_id = 0): bool
70  {
71  return ($this->getTargetType() === $type && $this->access->checkAccess('visible', '', $ref_id));
72  }
73 
74  public function isVisible($a_ref_id, string $a_type): bool
75  {
76  $ilAccess = $this->access;
77 
78  return $ilAccess->checkAccess('visible', '', (int)$a_ref_id);
79  }
80 
81  public function formatHeader(ilTemplate $tpl, $a_obj_id, array $a_option): void
82  {
83  $lng = $this->lng;
84 
85  $tpl = new ilTemplate("tpl.tree.html", true, true, "Services/UIComponent/Explorer");// TODO PHP8-REVIEW Why is this overwritten? Are you sure this is correct?
86 
87  $tpl->setCurrentBlock("text");
88  $tpl->setVariable("OBJ_TITLE", $lng->txt("repository"));
89  $tpl->parseCurrentBlock();
90 
91  $this->output .= $tpl->get();
92  }
93 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setSessionExpandVariable(string $a_var_name="expand")
setFiltered(bool $a_bool)
get(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
$type
const TITLE_LENGTH
ilLanguage $lng
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
ilGlobalTemplateInterface $tpl
formatHeader(ilTemplate $tpl, $a_obj_id, array $a_option)
const IL_FM_POSITIVE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
setTitleLength(int $a_length)
$ref_id
Definition: ltiauth.php:67
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:514
class for explorer view in admin frame
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
checkPermissions(bool $a_check)
__construct(Container $dic, ilPlugin $plugin)
addFilter(string $a_item)
setFilterMode(int $a_mode=IL_FM_NEGATIVE)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...