36 public string $id =
"";
75 protected \ILIAS\HTTP\Wrapper\WrapperFactory
$wrapper;
82 $this->obj_definition = $DIC[
"objDefinition"];
83 $this->error = $DIC[
"ilErr"];
84 $this->rbacsystem = $DIC->rbac()->system();
85 $this->tpl = $DIC[
"tpl"];
86 $this->
lng = $DIC->language();
87 $objDefinition = $DIC[
"objDefinition"];
90 if (!isset($a_target) or !is_string($a_target)) {
91 $ilErr->raiseError(get_class($this) .
"::Constructor(): No target given!",
$ilErr->WARNING);
95 $devtypes = $objDefinition->getDevModeAll();
97 if (count($devtypes) > 0) {
101 foreach ($devtypes as $type) {
106 $this->expanded = array();
107 $this->target = $a_target;
108 $this->target_get =
'ref_id';
109 $this->frame_target =
"content";
110 $this->order_column =
"title";
112 $this->tree->initLangCode();
113 $this->expand_target =
$_SERVER[
"PATH_INFO"] ??
"";
114 $this->rbac_check =
true;
115 $this->output_icons =
true;
116 $this->expand_variable =
"expand";
118 $this->post_sort =
true;
120 $this->highlighted =
"";
121 $this->show_minus =
true;
123 $this->asnch_expanding =
false;
125 $this->wrapper = $DIC->http()->wrapper();
130 $str = $this->
refinery->kindlyTo()->string();
131 if ($this->wrapper->post()->has($key)) {
132 return $this->wrapper->post()->retrieve($key, $str);
134 if ($this->wrapper->query()->has($key)) {
135 return $this->wrapper->query()->retrieve($key, $str);
140 public function setId(
string $a_val): void
152 $this->asnch_expanding = $a_val;
162 $this->counter = $a_number;
167 $this->title = $a_val;
172 $this->textwidth = $a_length;
187 #$this->tree = new ilTree(ROOT_FOLDER_ID,$a_root_id); 188 $this->root_id = $a_root_id;
193 return $this->root_id ?? $this->tree->getRootId();
198 $this->order_column = $a_column;
203 if ($a_direction ===
"desc") {
204 $this->order_direction = $a_direction;
206 $this->order_direction =
"asc";
217 if (!isset($a_target_get) or !is_string($a_target_get)) {
218 $ilErr->raiseError(get_class($this) .
"::setTargetGet(): No target given!",
$ilErr->WARNING);
221 $this->target_get = $a_target_get;
228 if (!isset($a_params_get) or !is_array($a_params_get)) {
229 $ilErr->raiseError(get_class($this) .
"::setTargetGet(): No target given!",
$ilErr->WARNING);
232 foreach ($a_params_get as $key => $val) {
233 $str .=
"&" . $key .
"=" . $val;
236 $this->params_get = $str;
247 $this->expand_target = $a_exp_target;
253 string $a_params =
"" 255 $this->up_frame = $a_up_frame;
257 $this->up_params = $a_params;
263 $this->highlighted = $a_id;
268 $this->rbac_check = $a_check;
273 $this->expand_variable = $a_var_name;
278 $this->output_icons = $a_icons;
284 $this->is_clickable[$a_type] =
"";
286 $this->is_clickable[$a_type] =
"n";
296 if (!$this->rbac_check) {
300 $visible = $rbacsystem->
checkAccess(
'visible', $a_ref_id);
308 $this->tree_lead = $a_val;
325 return $this->is_clickable[$type] !==
"n";
330 $this->post_sort = $a_sort;
335 $this->filter_mode = $a_mode;
352 $this->use_standard_frame = $a_val;
362 return $this->tree->getChilds($a_parent_id, $this->order_column);
374 bool $a_highlighted_subtree =
false 380 if (!isset($a_parent_id)) {
381 $ilErr->raiseError(get_class($this) .
"::setOutput(): No node_id given!",
$ilErr->WARNING);
393 if ($this->
forceExpanded($a_parent_id) && !in_array($a_parent_id, $this->expanded)) {
394 $this->expanded[] = $a_parent_id;
397 if (count($objects) > 0) {
399 $tab = ++$a_depth - 2;
400 if ($this->post_sort) {
401 $objects = $this->
sortNodes($objects, $a_obj_id);
404 foreach ($objects as $key => $object) {
411 if ($this->filtered ===
false || $this->
checkFilter($object[
"type"]) ===
false) {
412 if ($this->
isVisible($object[
'child'], $object[
'type'])) {
413 #echo 'CHILD getIndex() '.$object['child'].' parent: '.$this->getRoot(); 414 if ($object[
"child"] != $this->
getRoot()) {
415 $parent_index = $this->
getIndex($object);
417 $this->format_options[(string) $this->counter][
"parent"] = $object[
"parent"];
418 $this->format_options[(string) $this->counter][
"child"] = $object[
"child"];
419 $this->format_options[(string) $this->counter][
"title"] = $object[
"title"];
420 $this->format_options[(string) $this->counter][
"type"] = $object[
"type"];
421 $this->format_options[(string) $this->counter][
"obj_id"] = $object[
"obj_id"];
422 $this->format_options[(string) $this->counter][
"desc"] =
"obj_" . $object[
"type"];
423 $this->format_options[(string) $this->counter][
"depth"] = $tab;
424 $this->format_options[(string) $this->counter][
"container"] =
false;
425 $this->format_options[(string) $this->counter][
"visible"] =
true;
426 $this->format_options[(string) $this->counter][
"highlighted_subtree"] = $a_highlighted_subtree;
429 for ($i = 0; $i < $tab; ++$i) {
430 $this->format_options[(string) $this->counter][
"tab"][] =
'blank';
434 if ($parent_index === 0) {
435 if (!$this->expand_all && !in_array($object[
"parent"], $this->expanded)) {
436 $this->expanded[] = $object[
"parent"];
441 if ($object[
"child"] != $this->
getRoot() && ((!$this->expand_all && !in_array($object[
"parent"], $this->expanded))
442 or !$this->format_options[(
string) $parent_index][
"visible"])) {
451 $this->format_options[(string) $this->counter][
"visible"] =
false;
456 if ($object[
"child"] != $this->
getRoot()) {
457 $this->format_options[(string) $parent_index][
"container"] =
true;
459 if ($this->expand_all || in_array($object[
"parent"], $this->expanded)) {
462 $this->format_options[(string) $parent_index][
"tab"][($tab - 2)] =
'forceexp';
464 $this->format_options[(string) $parent_index][
"tab"][($tab - 2)] =
'minus';
467 $this->format_options[(string) $parent_index][
"tab"][($tab - 2)] =
'plus';
475 if ($this->expand_all || in_array($object[
"parent"], $this->expanded) or ($object[
"parent"] == 0)
477 $highlighted_subtree = $a_highlighted_subtree ||
481 $this->
setOutput($object[
"child"], $a_depth, $object[
'obj_id'], $highlighted_subtree);
516 $this->tree->getMaximumDepth();
526 $this->format_options[0][
"tab"] = array();
530 for ($i = 0;$i < $depth;++$i) {
541 $tpl_tree =
new ilTemplate(
"tpl.tree.html",
true,
true,
"components/ILIAS/UIComponent/Explorer");
546 $this->
requestStr(
"expandAll") !==
"") && $this->up_frame !==
"") {
547 $tpl_tree->setCurrentBlock(
"updater");
548 $tpl_tree->setVariable(
"UPDATE_FRAME", $this->up_frame);
549 $tpl_tree->setVariable(
"UPDATE_SCRIPT", $this->up_script);
550 if (is_array($this->up_params)) {
552 foreach ($this->up_params as $p) {
553 $up_str .= $lim .
"'" . $p .
"'";
556 $tpl_tree->setVariable(
"UPDATE_PARAMS", $up_str);
558 $tpl_tree->parseCurrentBlock();
561 foreach ($this->format_options as $key => $options) {
563 if (!($options[
"visible"] ??
false)) {
573 $cur_depth = $options[
"depth"];
575 if ($options[
"visible"] and $key != 0) {
576 $this->
formatObject($tpl_tree, $options[
"child"], $options, $options[
'obj_id']);
579 $this->
formatHeader($tpl_tree, $options[
"child"], $options);
585 $tpl_tree->setVariable(
"TREE_LEAD",
"");
586 if ($this->tree_lead !==
"") {
587 $tpl_tree->setCurrentBlock(
"tree_lead");
588 $tpl_tree->setVariable(
"TREE_LEAD", $this->tree_lead);
589 $tpl_tree->parseCurrentBlock();
591 if ($this->
getId() !==
"") {
592 $tpl_tree->setVariable(
"TREE_ID",
'id="' . $this->
getId() .
'_tree"');
595 $html = $tpl_tree->get();
600 $mtpl->setVariable(
"BODY_CLASS",
"il_Explorer");
601 $mtpl->addBlockFile(
"CONTENT",
"content",
"tpl.explorer.html");
603 $mtpl->setVariable(
"TXT_EXPLORER_HEADER", $this->
getTitle());
605 if ($this->
getId() !==
"") {
606 $mtpl->setVariable(
"ID",
'id="' . $this->
getId() .
'"');
609 $mtpl->setCurrentBlock(
"content");
610 $mtpl->setVariable(
"EXPLORER", $html);
611 $mtpl->setVariable(
"EXP_REFRESH", $lng->
txt(
"refresh"));
612 $mtpl->parseCurrentBlock();
613 $html = $mtpl->get();
629 if ($a_item_depth < $a_cur_depth) {
631 for ($i = 0; $i < ($a_cur_depth - $a_item_depth); $i++) {
638 } elseif ($a_item_depth == $a_cur_depth) {
654 if ($a_item_depth > $a_cur_depth) {
656 if ($a_item_depth > 1) {
659 $a_tpl_tree->
touchBlock(
"start_list_no_indent");
683 if (!isset($a_node_id) or !is_array($a_option)) {
684 $ilErr->raiseError(get_class($this) .
"::formatObject(): Missing parameter or wrong datatype! " .
685 "node_id: " . $a_node_id .
" options:" . var_export($a_option,
true),
$ilErr->WARNING);
689 foreach ((array) $a_option[
"tab"] as $picture) {
690 if ($picture ===
'plus') {
695 $target = $this->
createTarget(
'+', $a_node_id, $a_option[
"highlighted_subtree"]);
696 $tpl->
setVariable(
"LINK_TARGET_EXPANDER", $target);
698 $target = $this->
createTarget(
'+', $a_node_id, $a_option[
"highlighted_subtree"],
false);
699 $tpl->
setVariable(
"ONCLICK_TARGET_EXPANDER",
" onclick=\"return il.Explorer.refresh('tree_div', '" . $target .
"');\"");
707 if ($picture ===
'forceexp') {
712 $tpl->
setVariable(
"LINK_TARGET_EXPANDER", $target);
718 if ($picture ===
'minus' && $this->show_minus) {
723 $target = $this->
createTarget(
'-', $a_node_id, $a_option[
"highlighted_subtree"]);
724 $tpl->
setVariable(
"LINK_TARGET_EXPANDER", $target);
726 $target = $this->
createTarget(
'-', $a_node_id, $a_option[
"highlighted_subtree"],
false);
727 $tpl->
setVariable(
"ONCLICK_TARGET_EXPANDER",
" onclick=\"return il.Explorer.refresh('tree_div', '" . $target .
"');\"");
742 if ($this->output_icons) {
744 $tpl->
setVariable(
"ICON_IMAGE", $this->
getImage(
"standard/icon_" . $a_option[
"type"] .
".svg", $a_option[
"type"], $a_obj_id));
746 $tpl->
setVariable(
"TARGET_ID",
"iconid_" . $a_node_id);
747 $this->iconList[] =
"iconid_" . $a_node_id;
750 $this->
getImageAlt($lng->
txt(
"icon") .
" " . $lng->
txt($a_option[
"desc"]), $a_option[
"type"], $a_obj_id)
755 if (($sel = $this->
buildSelect($a_node_id, $a_option[
'type'])) !==
'') {
761 if ($this->
isClickable($a_option[
"type"], $a_node_id)) {
770 if ($style_class !==
"") {
771 $tpl->
setVariable(
"A_CLASS",
' class="' . $style_class .
'" ');
774 if (($onclick = $this->
buildOnClick($a_node_id, $a_option[
"type"], $a_option[
"title"])) !=
"") {
775 $tpl->
setVariable(
"ONCLICK",
"onClick=\"$onclick\"");
782 $this->
buildTitle($a_option[
"title"], $a_node_id, $a_option[
"type"]),
790 $this->
buildDescription($a_option[
"description"] ??
"", $a_node_id, $a_option[
"type"]),
795 $frame_target = $this->
buildFrameTarget($a_option[
"type"], $a_node_id, $a_option[
"obj_id"]);
796 if ($frame_target !==
"") {
797 $tpl->
setVariable(
"TARGET",
" target=\"" . $frame_target .
"\"");
804 $this->
buildTitle($a_option[
"title"], $a_node_id, $a_option[
"type"]),
834 string $a_default_text,
838 return $a_default_text;
845 if ($a_id == $this->highlighted) {
846 return "il_HighlightedNode";
855 $target = (strpos($this->target,
"?") ===
false)
856 ? $this->target .
"?" 857 : $this->target .
"&";
905 bool $a_highlighted_subtree =
false,
906 bool $a_append_anch =
true 910 if (!isset($a_type) or !is_string($a_type) or !isset($a_node_id)) {
911 $ilErr->raiseError(get_class($this) .
"::createTarget(): Missing parameter or wrong datatype! " .
912 "type: " . $a_type .
" node_id:" . $a_node_id,
$ilErr->WARNING);
918 $a_node_id = $a_type ===
'+' ? $a_node_id : -(
int) $a_node_id;
920 $sep = (is_int(strpos($this->expand_target,
"?")))
925 $ict_str = ($a_highlighted_subtree || $this->highlighted ===
"")
929 $ict_str .=
"&cmdMode=asynch";
931 if ($a_append_anch) {
932 return $this->expand_target . $sep . $this->expand_variable .
"=" . $a_node_id . $this->params_get . $ict_str .
"#" . abs($a_node_id);
934 return $this->expand_target . $sep . $this->expand_variable .
"=" . $a_node_id . $this->params_get . $ict_str;
940 $this->frame_target = $a_target;
945 for ($i = 0, $iMax = count($this->format_options); $i < $iMax; ++$i) {
946 if ($this->format_options[$i][
"depth"] == $a_depth + 1
947 and !$this->format_options[$i][
"container"]
948 and $this->format_options[$i][
"depth"] != 1) {
949 $this->format_options[$i][
"tab"][(string) $a_depth] =
"quer";
952 if ($this->format_options[$i][
"depth"] == $a_depth + 2) {
953 if ($this->
is_in_array($i + 1, $this->format_options[$i][
"depth"])) {
954 $this->format_options[$i][
"tab"][(string) $a_depth] =
"winkel";
956 $this->format_options[$i][
"tab"][(string) $a_depth] =
"ecke";
960 if ($this->format_options[$i][
"depth"] > $a_depth + 2) {
962 $this->format_options[$i][
"tab"][(string) $a_depth] =
"hoch";
972 for ($i = $a_start, $iMax = count($this->format_options); $i < $iMax; ++$i) {
973 if ($this->format_options[$i][
"depth"] < $a_depth) {
977 if ($this->format_options[$i][
"depth"] == $a_depth) {
987 if (!is_array($this->format_options)) {
991 foreach ($this->format_options as $key => $value) {
992 if (($value[
"child"] == $a_data[
"parent"])) {
1002 if (is_array($this->
filter)) {
1004 foreach ($this->
filter as $item) {
1005 if ($item === $a_item) {
1012 $this->
filter[] = $a_item;
1021 if (is_array($this->
filter)) {
1025 foreach ($this->
filter as $item) {
1026 if ($item !== $a_item) {
1038 return $deleted === 1;
1051 if ($a_node_id > 0 && !in_array($a_node_id,
ilSession::get($this->expand_variable))) {
1053 $exp[] = $a_node_id;
1056 if ($a_node_id < 0) {
1057 $key = array_keys(
ilSession::get($this->expand_variable), -(
int) $a_node_id);
1059 if (isset($key[0]) && isset($exp[$key[0]])) {
1060 unset($exp[$key[0]]);
1064 $this->expanded = (array)
ilSession::get($this->expand_variable);
1073 bool $a_show_minus =
true 1075 $this->expand_all = $a_mode;
1076 $this->show_minus = $a_show_minus;
1081 $this->filtered = $a_bool;
1087 if (is_array($this->
filter)) {
1088 if (in_array($a_item, $this->
filter)) {
1107 public function sortNodes(array $a_nodes, $a_parent_obj_id): array
1110 foreach ($a_nodes as $key => $node) {
1111 if ($node[
"type"] ===
"adm") {
1119 if (isset($match)) {
1120 array_splice($a_nodes, $match, 1);
1126 if (isset($match)) {
1127 $a_nodes[] = $adm_node;
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setSessionExpandVariable(string $a_var_name="expand")
setOrderDirection(string $a_direction)
static get(string $a_var)
setOutput( $a_parent_id, int $a_depth=1, int $a_obj_id=0, bool $a_highlighted_subtree=false)
Creates output for explorer view in admin menue recursive method.
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
createLines(int $a_depth)
sortNodes(array $a_nodes, $a_parent_obj_id)
sort nodes and put adm object to the end of sorted array
is_in_array(int $a_start, int $a_depth)
setFiltered(bool $a_bool)
buildDescription(string $a_desc, $a_id, string $a_type)
outputIcons(bool $a_icons)
handleListEndTags(ilTemplate $a_tpl_tree, int $a_cur_depth, int $a_item_depth)
handle list end tags ( and )
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...
special template class to simplify handling of ITX/PEAR
buildTitle(string $a_title, $a_id, string $a_type)
setFrameUpdater(string $a_up_frame, string $a_up_script, string $a_params="")
buildSelect($a_node_id, string $a_type)
standard implementation for adding an option select box between image and title
checkFilter(string $a_item)
handleListStartTags(ilTemplate $a_tpl_tree, int $a_cur_depth, int $a_item_depth)
handle list start tags (
ILIAS HTTP Wrapper WrapperFactory $wrapper
ilGlobalTemplateInterface $tpl
setFrameTarget(string $a_target)
const IL_FM_POSITIVE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
forceExpandAll(bool $a_mode, bool $a_show_minus=true)
force expandAll.
setPostSort(bool $a_sort)
getChildsOfNode($a_parent_id)
ILIAS Refinery Factory $refinery
highlightNode(string $a_id)
delFilter(string $a_item)
setTreeLead(string $a_val)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getImageAlt(string $a_default_text, string $a_type="", $a_obj_id="")
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 ...
touchBlock(string $block)
setTitleLength(int $a_length)
forceExpanded($a_obj_id)
force expansion of node
formatHeader(ilTemplate $tpl, $a_obj_id, array $a_option)
setVariable($variable, $value='')
Sets a variable value.
initItemCounter(int $a_number)
setClickable(string $a_type, bool $a_clickable)
setUseStandardFrame(bool $a_val)
Set use standard frame.
formatObject(ilTemplate $tpl, $a_node_id, array $a_option, $a_obj_id=0)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setOrderColumn(string $a_column)
showChilds($a_parent_id)
determines wether the childs of an object should be shown or not note: this standard implementation a...
isClickable(string $type, int $ref_id=0)
isVisible( $a_ref_id, string $a_type)
class for explorer view in admin frame
buildFrameTarget(string $a_type, $a_child=0, $a_obj_id=0)
getNodeStyleClass( $a_id, string $a_type)
getImage(string $a_name, string $a_type="", $a_obj_id="")
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
checkPermissions(bool $a_check)
setAsynchExpanding(bool $a_val)
__construct(Container $dic, ilPlugin $plugin)
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
addFilter(string $a_item)
createTarget(string $a_type, $a_node_id, bool $a_highlighted_subtree=false, bool $a_append_anch=true)
buildLinkTarget( $a_node_id, string $a_type)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
buildOnClick( $a_node_id, string $a_type, string $a_title)
static initConnection(?ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
setExpandTarget(string $a_exp_target)
target script for expand icons
setTargetGet(string $a_target_get)
static set(string $a_var, $a_val)
Set a value.
setFilterMode(int $a_mode=IL_FM_NEGATIVE)
setExpand($a_node_id)
set the expand option this value is stored in a SESSION variable to save it different view (lo view...
setParamsGet(array $a_params_get)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
ilObjectDefinition $obj_definition
modifyChilds( $a_parent_id, array $a_objects)