34 protected static $js_tree_path =
"./libs/bower/bower_components/jstree/dist/jstree.js";
35 protected static $js_tree_path_css =
"./libs/bower/bower_components/jstree/dist/themes/default/style.min.css";
37 protected static $js_expl_path =
"./Services/UIComponent/Explorer2/js/Explorer2.js";
72 public function __construct($a_expl_id, $a_parent_obj, $a_parent_cmd)
76 $this->log = $DIC[
"ilLog"];
77 $this->ctrl = $DIC->ctrl();
78 $this->tpl = $DIC[
"tpl"];
79 $this->
id = $a_expl_id;
80 $this->parent_obj = $a_parent_obj;
81 $this->parent_cmd = $a_parent_cmd;
83 include_once(
"./Services/Authentication/classes/class.ilSessionIStorage.php");
87 if (!is_array($this->open_nodes)) {
88 $this->open_nodes = array();
91 $this->requested_node_id =
$_GET[
"node_id"];
93 $this->nodeOnclickEnabled =
true;
104 $this->child_limit = $a_val;
124 $this->search_term = $a_val;
145 $this->tpl = $a_main_tpl;
154 return self::$js_expl_path;
162 return self::$js_tree_path;
170 return self::$js_tree_path_css;
222 abstract public function getNodeId($a_node);
253 foreach ($childs as $child) {
315 if ($this->select_postvar !=
"") {
389 $this->skip_root_node = $a_val;
409 $this->ajax = $a_val;
429 $this->sec_highl_nodes = $a_val;
450 if (!in_array($a_id, $this->custom_open_nodes)) {
451 $this->custom_open_nodes[] = $a_id;
463 return "$('#" . $this->
getContainerId() .
"').jstree('toggle_node' , '#" .
476 $oc =
"il.Explorer2.selectOnClick(event, '" . $dn_id .
"'); return false;";
489 $this->select_postvar = $a_postvar;
490 $this->select_multi = $a_multi;
501 if (!in_array($a_id, $this->selected_nodes)) {
502 $this->selected_nodes[] = $a_id;
513 $this->offline_mode = $a_val;
537 if (
$_GET[
"exp_cmd"] !=
"" &&
539 $cmd =
$_GET[
"exp_cmd"];
540 if (in_array($cmd, array(
"openNode",
"closeNode",
"getNodeAsync"))) {
557 return "il_expl2_jstree_cont_" . $this->
getId();
568 if (!in_array($id, $this->open_nodes)) {
569 $this->open_nodes[] = $id;
571 $this->store->set(
"on_" . $this->
id, serialize($this->open_nodes));
583 if (in_array($id, $this->open_nodes)) {
584 $k = array_search($id, $this->open_nodes);
585 unset($this->open_nodes[$k]);
587 $this->store->set(
"on_" . $this->
id, serialize($this->open_nodes));
598 $etpl =
new ilTemplate(
"tpl.explorer2.html",
true,
true,
"Services/UIComponent/Explorer2");
601 if (!in_array($root, $this->open_nodes)) {
602 $this->open_nodes[] = $root;
605 if (
$_GET[
"node_id"] !=
"") {
613 echo $etpl->get(
"tag");
633 || in_array($node_id, $this->open_nodes)
634 || in_array($node_id, $this->custom_open_nodes));
649 $container_outer_id =
"il_expl2_jstree_cont_out_" . $this->
getId();
653 foreach ($this->open_nodes as $nid) {
656 foreach ($this->custom_open_nodes as $nid) {
666 if (is_object($this->parent_obj)) {
667 $url =
$ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd,
"",
true);
669 $url =
$ilCtrl->getLinkTargetByClass($this->parent_obj, $this->parent_cmd,
"",
true);
675 foreach ($this->sec_highl_nodes as $sh) {
679 "container_id" => $container_id,
680 "container_outer_id" => $container_outer_id,
682 "second_hnodes" => $shn,
688 $js_tree_config = array(
692 "open_parents" =>
false,
693 "strings" => array(
"loading" =>
"Loading ...",
"new_node" =>
"New node"),
694 "themes" => array(
"dots" =>
false,
"icons" =>
false,
"theme" =>
"")
697 "html_data" => array()
700 return 'il.Explorer2.init(' . json_encode(
$config) .
', ' . json_encode($js_tree_config) .
');';
705 $plugins = array(
"html_data",
"themes",
"json_data");
716 public static function init($a_main_tpl = null)
720 if ($a_main_tpl == null) {
726 include_once(
"./Services/jQuery/classes/class.iljQueryUtil.php");
729 $tpl->addJavascript(self::getLocalExplorerJsPath());
730 $tpl->addJavascript(self::getLocalJsTreeJsPath());
731 $tpl->addCss(self::getLocalJsTreeCssPath());
744 if (!in_array($root, $this->open_nodes)) {
745 $this->open_nodes[] = $root;
752 $container_outer_id =
"il_expl2_jstree_cont_out_" . $this->
getId();
758 $etpl =
new ilTemplate(
"tpl.explorer2.html",
true,
true,
"Services/UIComponent/Explorer2");
773 foreach ($childs as $child_node) {
788 $etpl->setVariable(
"CONTAINER_ID", $container_id);
789 $etpl->setVariable(
"CONTAINER_OUTER_ID", $container_outer_id);
796 $content = $etpl->get();
798 return $content . $add;
816 if ($this->select_multi) {
817 $tpl->setCurrentBlock(
"cb");
818 if (in_array($this->
getNodeId($a_node), $this->selected_nodes)) {
819 $tpl->setVariable(
"CHECKED",
'checked="checked"');
822 $tpl->setVariable(
"CB_NAME", $this->select_postvar .
"[]");
823 $tpl->parseCurrentBlock();
825 $tpl->setCurrentBlock(
"rd");
826 if (in_array($this->
getNodeId($a_node), $this->selected_nodes)) {
827 $tpl->setVariable(
"SELECTED",
'checked="checked"');
830 $tpl->setVariable(
"RD_NAME", $this->select_postvar);
831 $tpl->parseCurrentBlock();
837 $tpl->touchBlock(
"hl");
839 $tpl->setCurrentBlock(
"content");
849 $targetRelatedParams = array(
850 'target="' . $target .
'"' 853 if (
'_blank' === $target) {
854 $targetRelatedParams[] =
'rel="noopener"';
857 $tpl->setVariable(
'TARGET', implode(
' ', $targetRelatedParams));
860 $tpl->setVariable(
"ONCLICK",
'onclick="return false;"');
861 $tpl->setVariable(
"A_CLASS",
'class="disabled"');
864 if ($onclick !=
"") {
865 $tpl->setVariable(
"ONCLICK",
'onclick="' . $onclick .
'"');
868 $tpl->parseCurrentBlock();
870 $tpl->touchBlock(
"tag");
873 if (!$this->
getAjax() || in_array($this->
getNodeId($a_node), $this->open_nodes)
874 || in_array($this->
getNodeId($a_node), $this->custom_open_nodes)) {
892 $childs = $this->
sortChilds($childs, $a_node_id);
897 $visible_childs = [];
900 foreach ($childs as $child) {
907 $visible_childs[] = $child;
919 $tpl->setCurrentBlock(
"list_search");
920 $tpl->setVariable(
"SEARCH_CONTAINER_ID", $a_node_id);
924 $tpl->parseCurrentBlock();
925 $tpl->touchBlock(
"tag");
929 foreach ($visible_childs as $child) {
955 return "exp_node_" . $this->
getId() .
"_" . $a_node_id;
966 $i = strlen(
"exp_node_" . $this->
getId() .
"_");
967 return substr($a_dom_node_id,
$i);
978 $tpl->setCurrentBlock(
"list_item_start");
980 $tpl->touchBlock(
"li_closed");
983 $tpl->touchBlock(
"li_opened");
990 $tpl->parseCurrentBlock();
991 $tpl->touchBlock(
"tag");
1002 $tpl->touchBlock(
"list_item_end");
1003 $tpl->touchBlock(
"tag");
1014 $tpl->touchBlock(
"list_start");
1015 $tpl->touchBlock(
"tag");
1026 $tpl->touchBlock(
"list_end");
1027 $tpl->touchBlock(
"tag");
static makeDirParents($a_dir)
Create a new directory and all parent directories.
setOfflineMode($a_val)
Set offline mode.
getNodeOnClick($a_node)
Get node onclick attribute.
isNodeClickable($a_node)
Is node clickable?
renderChilds($a_node_id, $tpl)
Render childs.
getNodeIcon($a_node)
Get node icon path.
getNodeIconAlt($a_node)
Get node icon alt attribute.
setSkipRootNode($a_val)
Set skip root node.
setSelectMode($a_postvar, $a_multi=false)
Set select mode (to deactivate, pass an empty string as postvar)
getSearchTerm()
Get search term.
getNodeToggleOnClick($a_node)
Get onclick attribute for node toggling.
static initConnection(ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
getChildLimit()
Get child limit.
__construct($a_expl_id, $a_parent_obj, $a_parent_cmd)
Constructor.
renderNode($a_node, $tpl)
Render node.
static init($a_main_tpl=null)
Init JS.
setNodeOpen($a_id)
Set node to be opened (additional custom opened node, not standard expand behaviour) ...
isNodeSelectable($a_node)
Is node selectable?
isNodeHighlighted($a_node)
Is node highlighted?
isNodeVisible($a_node)
Is node visible?
handleCommand()
Handle explorer internal command.
setSecondaryHighlightedNodes($a_val)
Set secondary (background) highlighted nodes.
static getLocalJsTreeJsPath()
Get local path of jsTree js.
sortChilds($a_childs, $a_parent_node_id)
Sort childs.
getSkipRootNode()
Get skip root node.
setNodeSelected($a_id)
Set node to be opened (additional custom opened node, not standard expand behaviour) ...
setEnableDnd($enable_dnd)
Enable Drag & Drop functionality.
getSecondaryHighlightedNodes()
Get secondary (background) highlighted nodes.
static createHTMLExportDirs($a_target_dir)
Create html export directories.
getOnLoadCode()
Get on load code.
getRootNode()
Get root node.
static getLocalExplorerJsPath()
Get local path of explorer js.
getNodeId($a_node)
Get id of a node.
beforeRendering()
Before rendering.
getNodeAsync()
Get node asynchronously.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
getOfflineMode()
Get offline mode.
getNodeContent($a_node)
Get content of a node.
setMainTemplate($a_main_tpl=null)
Set main template (that is responsible for adding js/css)
listStart($tpl)
List start.
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
getSelectOnClick($a_node)
Get onclick attribute for selecting radio/checkbox.
getNodeTarget($a_node)
Get node target (frame) attribute.
getChildsOfNode($a_parent_node_id)
Get childs of node.
Session based immediate storage.
listItemStart($tpl, $a_node)
List item start.
isNodeOpen($node_id)
Get all open nodes.
setSearchTerm($a_val)
Set search term.
getDomNodeIdForNodeId($a_node_id)
Get DOM node id for node id.
nodeHasVisibleChilds($a_node)
Node has childs?
static getLocalJsTreeCssPath()
Get local path of jsTree js.
listItemEnd($tpl)
List item end.
setNodeOnclickEnabled($nodeOnclickEnabled)
setChildLimit($a_val)
Set child limit.
getNodeIdForDomNodeId($a_dom_node_id)
Get node id for dom node id.
getNodeHref($a_node)
Get href for node.
getId()
Get id of explorer element.
getContainerId()
Get container id.