19 declare(strict_types=1);
48 $this->tree = $DIC->repositoryTree();
50 $this->obj_definition = $DIC[
"objDefinition"];
51 $this->
lng = $DIC->language();
52 $this->
ctrl = $DIC->ctrl();
53 $this->rbacsystem = $DIC->rbac()->system();
54 $this->db = $DIC->database();
55 $this->
user = $DIC->user();
56 $this->
access = $DIC->access();
57 $tree = $DIC->repositoryTree();
58 $objDefinition = $DIC[
"objDefinition"];
64 $this->cur_ref_id = $this->request->
getRefId();
66 $this->top_node_id = 0;
74 foreach ($objDefinition->getSubObjectsRecursively(
"root") as $rtype) {
75 if ($rtype[
"name"] !==
"itgr" && !$objDefinition->isSideBlock($rtype[
"name"])) {
76 $white[] = $rtype[
"name"];
81 if ($this->cur_ref_id > 0) {
93 $title = $a_node[
"title"];
95 if ($title ===
"ILIAS") {
96 $title =
$lng->
txt(
"repository");
120 $title = $a_node[
"title"];
121 if ($title ===
"ILIAS") {
122 $title =
$lng->
txt(
"repository");
124 return $lng->
txt(
"icon") .
" " . $title;
128 return parent::getNodeIconAlt($a_node);
136 return $a_node[
"child"] == $this->cur_ref_id ||
148 $class_name = $objDefinition->
getClassName($a_node[
"type"]);
149 $class = strtolower(
"ilObj" . $class_name .
"GUI");
150 $ilCtrl->setParameterByClass($class,
"ref_id", $a_node[
"child"]);
151 $link = $ilCtrl->getLinkTargetByClass($class,
"view");
152 $ilCtrl->setParameterByClass($class,
"ref_id", $this->cur_ref_id);
164 $visible = $rbacsystem->
checkAccess(
'visible', (
int) $a_node[
"child"]);
165 if ($a_node[
"type"] ===
"rolf" && $a_node[
"child"] !=
ROLE_FOLDER_ID) {
175 public function sortChilds(array $a_childs, $a_parent_node_id): array
181 if ($parent_obj_id > 0) {
184 $parent_type =
"dummy";
185 $this->type_grps[
"dummy"] = array(
"root" =>
"dummy");
188 if (empty($this->type_grps[$parent_type])) {
189 $this->type_grps[$parent_type] =
190 $objDefinition::getGroupedRepositoryObjectTypes($parent_type);
194 foreach ($a_childs as $child) {
195 $g = $objDefinition->getGroupOfObj($child[
"type"]);
196 if ($g ===
null || $g ===
"") {
199 $group[$g][] = $child;
203 foreach ($this->type_grps[$parent_type] as $t => $g) {
204 if (isset($group[$t])) {
207 $group = $sort->sortItems($group);
213 foreach ($group[$t] as $k => $item) {
229 if (!$rbacsystem->
checkAccess(
"read", (
int) $a_parent_node_id)) {
233 return parent::getChildsOfNode($a_parent_node_id);
241 return $this->rbacsystem->checkAccess(
'read', (
int) $a_node[
"child"]);
setSkipRootNode(bool $a_val)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
__construct(string $a_parent_obj, string $a_parent_cmd)
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...
setTypeWhiteList(array $a_val)
Set type white list.
setPathOpen($a_id)
Set node path to be opened.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
isNodeHighlighted($a_node)
getClassName(string $obj_name)
Administration explorer GUI class.
getNodeId($a_node)
Get id for node.
getRootNode()
Get root node.
ilObjectDefinition $obj_definition
Explorer class that works on tree objects (Services/Tree)
__construct(Container $dic, ilPlugin $plugin)
static _getInstance(int $a_obj_id)
sortChilds(array $a_childs, $a_parent_node_id)
Sort childs.
setOrderField(string $a_val, bool $a_numeric=false)
static _lookupType(int $id, bool $reference=false)
getChildsOfNode($a_parent_node_id)