ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilExplorerBaseGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
16 abstract class ilExplorerBaseGUI
17 {
18  protected static $js_tree_path = "./Services/UIComponent/Explorer2/lib/jstree-v.pre1.0/jquery.jstree.js";
19  protected static $js_expl_path = "./Services/UIComponent/Explorer2/js/Explorer2.js";
20  protected $skip_root_node = false;
21  protected $ajax = false;
22  protected $custom_open_nodes = array();
23  protected $selected_nodes = array();
24  protected $select_postvar = "";
25  protected $offline_mode = false;
26 
30  public function __construct($a_expl_id, $a_parent_obj, $a_parent_cmd)
31  {
32  $this->id = $a_expl_id;
33  $this->parent_obj = $a_parent_obj;
34  $this->parent_cmd = $a_parent_cmd;
35 
36  // get open nodes
37  include_once("./Services/Authentication/classes/class.ilSessionIStorage.php");
38  $this->store = new ilSessionIStorage("expl2");
39  $open_nodes = $this->store->get("on_".$this->id);
40  $this->open_nodes = unserialize($open_nodes);
41  if (!is_array($this->open_nodes))
42  {
43  $this->open_nodes = array();
44  }
45 
46  }
47 
51  static function getLocalExplorerJsPath()
52  {
53  return self::$js_expl_path;
54  }
55 
59  static function getLocalJsTreeJsPath()
60  {
61  return self::$js_tree_path;
62  }
63 
69  static function createHTMLExportDirs($a_target_dir)
70  {
71  ilUtil::makeDirParents($a_target_dir."/Services/UIComponent/Explorer2/lib/jstree-v.pre1.0");
72  ilUtil::makeDirParents($a_target_dir."/Services/UIComponent/Explorer2/js");
73  }
74 
75 
76 
77  //
78  // Abstract functions that need to be overwritten in derived classes
79  //
80 
89  abstract function getRootNode();
90 
97  abstract function getChildsOfNode($a_parent_node_id);
98 
105  abstract function getNodeContent($a_node);
106 
113  abstract function getNodeId($a_node);
114 
115 
116  //
117  // Functions with standard implementations that may be overwritten
118  //
119 
126  function getNodeHref($a_node)
127  {
128  return "#";
129  }
130 
140  function nodeHasVisibleChilds($a_node)
141  {
142  $childs = $this->getChildsOfNode($this->getNodeId($a_node));
143 
144  foreach ($childs as $child)
145  {
146  if ($this->isNodeVisible($child))
147  {
148  return true;
149  }
150  }
151  return false;
152  }
153 
162  function sortChilds($a_childs, $a_parent_node_id)
163  {
164  return $a_childs;
165  }
166 
173  function getNodeIcon($a_node)
174  {
175  return "";
176  }
177 
184  function getNodeIconAlt($a_node)
185  {
186  return "";
187  }
188 
195  function getNodeTarget($a_node)
196  {
197  return "";
198  }
199 
206  function getNodeOnClick($a_node)
207  {
208  if ($this->select_postvar != "")
209  {
210  return $this->getSelectOnClick($a_node);
211  }
212  return "";
213  }
214 
221  function isNodeVisible($a_node)
222  {
223  return true;
224  }
225 
232  function isNodeHighlighted($a_node)
233  {
234  return false;
235  }
236 
243  function isNodeClickable($a_node)
244  {
245  return true;
246  }
247 
248 
249  //
250  // Basic configuration / setter/getter
251  //
252 
258  function getId()
259  {
260  return $this->id;
261  }
262 
270  function setSkipRootNode($a_val)
271  {
272  $this->skip_root_node = $a_val;
273  }
274 
280  function getSkipRootNode()
281  {
282  return $this->skip_root_node;
283  }
284 
290  function setAjax($a_val)
291  {
292  $this->ajax = $a_val;
293  }
294 
300  function getAjax()
301  {
302  return $this->ajax;
303  }
304 
311  function setNodeOpen($a_id)
312  {
313  if (!in_array($a_id, $this->custom_open_nodes))
314  {
315  $this->custom_open_nodes[] = $a_id;
316  }
317  }
318 
325  final protected function getNodeToggleOnClick($a_node)
326  {
327  return "$('#".$this->getContainerId()."').jstree('toggle_node' , '#".
328  $this->getDomNodeIdForNodeId($this->getNodeId($a_node))."'); return false;";
329  }
330 
337  final protected function getSelectOnClick($a_node)
338  {
339  $dn_id = $this->getDomNodeIdForNodeId($this->getNodeId($a_node));
340  $oc = "il.Explorer2.selectOnClick('".$dn_id."'); return false;";
341  return $oc;
342  }
343 
351  function setSelectMode($a_postvar, $a_multi = false)
352  {
353  $this->select_postvar = $a_postvar;
354  $this->select_multi = $a_multi;
355  }
356 
363  function setNodeSelected($a_id)
364  {
365  if (!in_array($a_id, $this->selected_nodes))
366  {
367  $this->selected_nodes[] = $a_id;
368  }
369  }
370 
376  function setOfflineMode($a_val)
377  {
378  $this->offline_mode = $a_val;
379  }
380 
386  function getOfflineMode()
387  {
388  return $this->offline_mode;
389  }
390 
391  //
392  // Standard functions that usually are not overwritten / internal use
393  //
394 
400  function handleCommand()
401  {
402  if ($_GET["exp_cmd"] != "" &&
403  $_GET["exp_cont"] == $this->getContainerId())
404  {
405  $cmd = $_GET["exp_cmd"];
406  if (in_array($cmd, array("openNode", "closeNode", "getNodeAsync")))
407  {
408  $this->$cmd();
409  }
410 
411  return true;
412  }
413  return false;
414  }
415 
422  function getContainerId()
423  {
424  return "il_expl2_jstree_cont_".$this->getId();
425  }
426 
430  function openNode()
431  {
432  global $ilLog;
433 
434  $id = $this->getNodeIdForDomNodeId($_GET["node_id"]);
435  if (!in_array($id, $this->open_nodes))
436  {
437  $this->open_nodes[] = $id;
438  }
439  $this->store->set("on_".$this->id, serialize($this->open_nodes));
440  exit;
441  }
442 
446  function closeNode()
447  {
448  global $ilLog;
449 
450  $id = $this->getNodeIdForDomNodeId($_GET["node_id"]);
451  if (in_array($id, $this->open_nodes))
452  {
453  $k = array_search($id, $this->open_nodes);
454  unset($this->open_nodes[$k]);
455  }
456  $this->store->set("on_".$this->id, serialize($this->open_nodes));
457  exit;
458  }
459 
463  function getNodeAsync()
464  {
465  $this->beforeRendering();
466 
467  if ($_GET["node_id"] != "")
468  {
469  $id = $this->getNodeIdForDomNodeId($_GET["node_id"]);
470  }
471  else
472  {
473  $id = $this->getNodeId($this->getRootNode());
474  }
475 
476  $etpl = new ilTemplate("tpl.explorer2.html", true, true, "Services/UIComponent/Explorer2");
477  $this->renderChilds($id, $etpl);
478  echo $etpl->get("tag");
479  exit;
480  }
481 
485  function beforeRendering()
486  {
487 
488  }
489 
490 
494  function getHTML()
495  {
496  global $tpl, $ilCtrl;
497 
498  $this->beforeRendering();
499 
500  $tpl->addJavascript(self::getLocalExplorerJsPath());
501  $tpl->addJavascript(self::getLocalJsTreeJsPath());
502 
503  $container_id = $this->getContainerId();
504  $container_outer_id = "il_expl2_jstree_cont_out_".$this->getId();
505 
506  // collect open nodes
507  $open_nodes = array($this->getDomNodeIdForNodeId($this->getNodeId($this->getRootNode())));
508  foreach ($this->open_nodes as $nid)
509  {
510  $open_nodes[] = $this->getDomNodeIdForNodeId($nid);
511  }
512  foreach ($this->custom_open_nodes as $nid)
513  {
514  $dnode = $this->getDomNodeIdForNodeId($nid);
515  if (!in_array($dnode, $open_nodes))
516  {
517  $open_nodes[] = $dnode;
518  }
519  }
520 
521  // ilias config options
522  $url = "";
523  if (!$this->getOfflineMode())
524  {
525  if (is_object($this->parent_obj))
526  {
527  $url = $ilCtrl->getLinkTarget($this->parent_obj, $this->parent_cmd, "", true);
528  }
529  else
530  {
531  $url = $ilCtrl->getLinkTargetByClass($this->parent_obj, $this->parent_cmd, "", true);
532  }
533  }
534  $config = array(
535  "container_id" => $container_id,
536  "container_outer_id" => $container_outer_id,
537  "url" => $url,
538  "ajax" => $this->getAjax(),
539  );
540 
541 
542  // jstree config options
543  $js_tree_config = array(
544  "core" => array(
545  "animation" => 300,
546  "initially_open" => $open_nodes,
547  "open_parents" => false,
548  "strings" => array("loading" => "Loading ...", new_node => "New node")
549  ),
550  "plugins" => array("html_data", "themes"),
551  "themes" => array("dots" => false, "icons" => false, "theme" => ""),
552  "html_data" => array()
553  );
554 
555  $tpl->addOnLoadCode('il.Explorer2.init('.json_encode($config).', '.json_encode($js_tree_config).');');
556  $etpl = new ilTemplate("tpl.explorer2.html", true, true, "Services/UIComponent/Explorer2");
557 
558  // render childs
559  $root_node = $this->getRootNode();
560 
561  if (!$this->getSkipRootNode() &&
562  $this->isNodeVisible($this->getRootNode()))
563  {
564  $this->listStart($etpl);
565  $this->renderNode($this->getRootNode(), $etpl);
566  $this->listEnd($etpl);
567  }
568  else
569  {
570  $childs = $this->getChildsOfNode($this->getNodeId($root_node));
571  $childs = $this->sortChilds($childs, $this->getNodeId($root_node));
572  $any = false;
573  foreach ($childs as $child_node)
574  {
575  if ($this->isNodeVisible($child_node))
576  {
577  if (!$any)
578  {
579  $this->listStart($etpl);
580  $any = true;
581  }
582  $this->renderNode($child_node, $etpl);
583  }
584  }
585  if ($any)
586  {
587  $this->listEnd($etpl);
588  }
589  }
590 
591  $etpl->setVariable("CONTAINER_ID", $container_id);
592  $etpl->setVariable("CONTAINER_OUTER_ID", $container_outer_id);
593 
594  return $etpl->get();
595  }
596 
603  function renderNode($a_node, $tpl)
604  {
605  $this->listItemStart($tpl, $a_node);
606 
607  // select mode?
608  if ($this->select_postvar != "")
609  {
610  if ($this->select_multi)
611  {
612  $tpl->setCurrentBlock("cb");
613  if (in_array($this->getNodeId($a_node), $this->selected_nodes))
614  {
615  $tpl->setVariable("CHECKED", 'checked="checked"');
616  }
617  $tpl->setVariable("CB_VAL", $this->getNodeId($a_node));
618  $tpl->setVariable("CB_NAME", $this->select_postvar."[]");
619  $tpl->parseCurrentBlock();
620  }
621  else
622  {
623  $tpl->setCurrentBlock("rd");
624  if (in_array($this->getNodeId($a_node), $this->selected_nodes))
625  {
626  $tpl->setVariable("SELECTED", 'checked="checked"');
627  }
628  $tpl->setVariable("RD_VAL", $this->getNodeId($a_node));
629  $tpl->setVariable("RD_NAME", $this->select_postvar);
630  $tpl->parseCurrentBlock();
631  }
632  }
633 
634 
635  if ($this->isNodeHighlighted($a_node))
636  {
637  $tpl->touchBlock("hl");
638  }
639  $tpl->setCurrentBlock("content");
640  if ($this->getNodeIcon($a_node) != "")
641  {
642  $tpl->setVariable("ICON", ilUtil::img($this->getNodeIcon($a_node), $this->getNodeIconAlt($a_node))." ");
643  }
644  $tpl->setVariable("CONTENT", $this->getNodeContent($a_node));
645  $tpl->setVariable("HREF", $this->getNodeHref($a_node));
646  $target = $this->getNodeTarget($a_node);
647  if ($target != "")
648  {
649  $tpl->setVariable("TARGET", 'target="'.$target.'"');
650  }
651  if (!$this->isNodeClickable($a_node))
652  {
653  $tpl->setVariable("ONCLICK", 'onclick="return false;"');
654  $tpl->setVariable("A_CLASS", 'class="disabled"');
655  }
656  else
657  {
658  $onclick = $this->getNodeOnClick($a_node);
659  if ($onclick != "")
660  {
661  $tpl->setVariable("ONCLICK", 'onclick="'.$onclick.'"');
662  }
663  }
664  $tpl->parseCurrentBlock();
665 
666  $tpl->touchBlock("tag");
667 
668  if (!$this->getAjax() || in_array($this->getNodeId($a_node), $this->open_nodes)
669  || in_array($this->getNodeId($a_node), $this->custom_open_nodes))
670  {
671  $this->renderChilds($this->getNodeId($a_node), $tpl);
672  }
673 
674  $this->listItemEnd($tpl);
675  }
676 
683  final function renderChilds($a_node_id, $tpl)
684  {
685  $childs = $this->getChildsOfNode($a_node_id);
686  $childs = $this->sortChilds($childs, $a_node_id);
687 
688  if (count($childs) > 0)
689  {
690  $any = false;
691  foreach ($childs as $child)
692  {
693  if ($this->isNodeVisible($child))
694  {
695  if (!$any)
696  {
697  $this->listStart($tpl);
698  $any = true;
699  }
700  $this->renderNode($child, $tpl);
701  }
702  }
703  if ($any)
704  {
705  $this->listEnd($tpl);
706  }
707  }
708  }
709 
716  function getDomNodeIdForNodeId($a_node_id)
717  {
718  return "exp_node_".$this->getId()."_".$a_node_id;
719  }
720 
727  function getNodeIdForDomNodeId($a_dom_node_id)
728  {
729  $i = strlen("exp_node_".$this->getId()."_");
730  return substr($a_dom_node_id, $i);
731  }
732 
739  function listItemStart($tpl, $a_node)
740  {
741  $tpl->setCurrentBlock("list_item_start");
742  if ($this->getAjax() && $this->nodeHasVisibleChilds($a_node))
743  {
744  $tpl->touchBlock("li_closed");
745  }
746  $tpl->setVariable("DOM_NODE_ID",
747  $this->getDomNodeIdForNodeId($this->getNodeId($a_node)));
748  $tpl->parseCurrentBlock();
749  $tpl->touchBlock("tag");
750  }
751 
758  function listItemEnd($tpl)
759  {
760  $tpl->touchBlock("list_item_end");
761  $tpl->touchBlock("tag");
762  }
763 
770  function listStart($tpl)
771  {
772  $tpl->touchBlock("list_start");
773  $tpl->touchBlock("tag");
774  }
775 
782  function listEnd($tpl)
783  {
784  $tpl->touchBlock("list_end");
785  $tpl->touchBlock("tag");
786  }
787 }
788 
789 ?>
static makeDirParents($a_dir)
Create a new directory and all parent directories.
exit
Definition: login.php:54
setOfflineMode($a_val)
Set offline mode.
static img($a_src, $a_alt="", $a_width="", $a_height="", $a_border=0, $a_id="")
Build img tag.
$_GET["client_id"]
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)
$cmd
Definition: sahs_server.php:35
getNodeToggleOnClick($a_node)
Get onclick attribute for node toggling.
__construct($a_expl_id, $a_parent_obj, $a_parent_cmd)
Constructor.
renderNode($a_node, $tpl)
Render node.
setNodeOpen($a_id)
Set node to be opened (additional custom opened node, not standard expand behaviour) ...
isNodeHighlighted($a_node)
Is node highlighted?
isNodeVisible($a_node)
Is node visible?
handleCommand()
Handle explorer internal command.
static getLocalJsTreeJsPath()
Get local path of jsTree js.
sortChilds($a_childs, $a_parent_node_id)
Sort childs.
global $ilCtrl
Definition: ilias.php:18
getSkipRootNode()
Get skip root node.
setNodeSelected($a_id)
Set node to be opened (additional custom opened node, not standard expand behaviour) ...
static createHTMLExportDirs($a_target_dir)
Create html export directories.
Explorer base GUI class.
getRootNode()
Get root node.
static getLocalExplorerJsPath()
Get local path of explorer js.
getNodeId($a_node)
Get id of a node.
special template class to simplify handling of ITX/PEAR
beforeRendering()
Before rendering.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
getNodeAsync()
Get node asynchronously.
getOfflineMode()
Get offline mode.
getNodeContent($a_node)
Get content of a node.
listStart($tpl)
List start.
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.
getDomNodeIdForNodeId($a_node_id)
Get DOM node id for node id.
nodeHasVisibleChilds($a_node)
Node has childs?
listItemEnd($tpl)
List item end.
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.