4 include_once(
"./Services/Form/classes/class.ilFormGUI.php");
26 $this->multi_commands = array();
27 $this->commands = array();
28 $this->drag_target[] = array();
29 $this->drag_content[] = array();
30 $lng->loadLanguageModule(
"form");
33 $this->help_items = array();
35 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
37 $tpl->addJavascript(
"./Services/Form/js/ServiceFormHierarchyForm.js");
47 $this->parent_obj = $a_parent_obj;
48 $this->parent_cmd = $a_parent_cmd;
58 return $this->parent_obj;
68 return $this->parent_cmd;
78 die(
"ilHierarchyFormGUI does currently not support multiple forms (multiple IDs). ID is always hform.");
98 $this->tree = $a_tree;
118 $this->currenttopnodeid = $a_currenttopnodeid;
128 return $this->currenttopnodeid;
138 $this->title = $a_title;
158 $this->icon = $a_icon;
178 $this->checkboxname = $a_checkboxname;
188 return $this->checkboxname;
198 $this->dragicon = $a_dragicon;
208 return $this->dragicon;
218 $this->maxdepth = $a_maxdepth;
228 return $this->maxdepth;
238 $this->exp_frame = $a_exp_frame;
239 $this->exp_id = $a_exp_id;
240 $this->exp_target_script = $a_exp_target_script;
250 $this->triggered_update_command = $a_triggered_update_command;
258 $this->help_items[] = array(
"text" => $a_text,
259 "image" => $a_image);
267 return $this->help_items;
276 function makeDragTarget($a_id, $a_group, $a_first_child_drop_area =
false, $a_as_subitem =
false, $a_diss_text =
"")
278 if ($a_first_child_drop_area ==
true)
280 $a_as_subitem =
true;
285 if ($a_first_child_drop_area)
290 $this->drag_target[] = array(
"id" => $a_id,
"group" => $a_group);
291 $this->diss_menues[$a_id][$a_group][] = array(
"subitem" => $a_as_subitem,
"text" => $a_diss_text);
305 $this->drag_content[] = array(
"id" => $a_id,
"group" => $a_group);
317 $this->multi_commands[] = array(
"text" => $a_txt,
"cmd" => $a_cmd);
328 $this->commands[] = array(
"text" => $a_txt,
"cmd" => $a_cmd);
338 $this->highlighted_nodes = $a_val;
348 return $this->highlighted_nodes;
358 $this->focus_id = $a_val;
368 return $this->focus_id;
378 $this->expand_variable = $a_val;
388 return $this->expand_variable;
398 $this->expanded = $a_val;
408 return $this->expanded;
431 if (
$_POST[
"il_hform_expand"] !=
"")
433 $node_id =
$_POST[
"il_hform_expand"];
435 if (
$_GET[$ev] !=
"")
437 $node_id =
$_GET[$ev];
441 if ($node_id > 0 && !in_array($node_id,
$_SESSION[$ev]))
448 $key = array_keys(
$_SESSION[$ev],-(
int) $node_id);
461 $this->white_list = $a_val;
471 return $this->white_list;
480 if ($a_node_id ==
false)
485 $tree_childs = $this->
getTree()->getChilds($a_node_id);
487 foreach($tree_childs as $tree_child)
490 if (!is_array($this->white_list) || in_array($tree_child[
"type"], $this->white_list))
492 $childs[] = array(
"node_id" => $tree_child[
"child"],
493 "title" => $tree_child[
"title"],
494 "type" => $tree_child[
"type"],
495 "depth" => $tree_child[
"depth"]
515 $ttpl =
new ilTemplate(
"tpl.hierarchy_form.html",
true,
true,
"Services/Form");
516 $ttpl->setVariable(
"TXT_SAVING", $lng->txt(
"saving"));
518 $top_node = array(
"node_id" => $top_node_data[
"child"],
519 "title" => $top_node_data[
"title"],
520 "type" => $top_node_data[
"type"]);
523 $nodes_html = $this->
getLevelHTML($top_node, 0, $childs);
527 $secs = array(
"1",
"2");
528 foreach ($secs as $sec)
530 reset($this->commands);
531 reset($this->multi_commands);
532 if (count($this->multi_commands) > 0 || count($this->commands) > 0)
534 if (count($childs) > 0)
537 foreach($this->commands as
$cmd)
539 $ttpl->setCurrentBlock(
"cmd".$sec);
540 $ttpl->setVariable(
"CMD", $cmd[
"cmd"]);
541 $ttpl->setVariable(
"CMD_TXT", $cmd[
"text"]);
542 $ttpl->parseCurrentBlock();
547 foreach($this->multi_commands as $cmd)
549 $ttpl->setCurrentBlock(
"multi_cmd".$sec);
550 $ttpl->setVariable(
"MULTI_CMD", $cmd[
"cmd"]);
551 $ttpl->setVariable(
"MULTI_CMD_TXT", $cmd[
"text"]);
552 $ttpl->parseCurrentBlock();
557 $ttpl->setCurrentBlock(
"multi_cmds".$sec);
558 $ttpl->setVariable(
"MCMD_ALT", $lng->txt(
"commands"));
567 $ttpl->parseCurrentBlock();
571 if ($single || $multi)
573 $ttpl->setCurrentBlock(
"commands".$sec);
574 $ttpl->parseCurrentBlock();
581 if ($this->exp_frame !=
"")
583 $ttpl->setCurrentBlock(
"updater");
584 $ttpl->setVariable(
"UPDATER_FRAME", $this->exp_frame);
585 $ttpl->setVariable(
"EXP_ID_UPDATER", $this->exp_id);
586 $ttpl->setVariable(
"HREF_UPDATER", $this->exp_target_script);
587 $ttpl->parseCurrentBlock();
591 foreach($this->drag_target as $drag_target)
593 $ttpl->setCurrentBlock(
"dragtarget");
594 $ttpl->setVariable(
"EL_ID", $drag_target[
"id"]);
595 $ttpl->setVariable(
"GROUP", $drag_target[
"group"]);
596 $ttpl->parseCurrentBlock();
598 foreach($this->drag_content as $drag_content)
600 $ttpl->setCurrentBlock(
"dragcontent");
601 $ttpl->setVariable(
"EL_ID", $drag_content[
"id"]);
602 $ttpl->setVariable(
"GROUP", $drag_content[
"group"]);
603 $ttpl->parseCurrentBlock();
607 if (is_array($this->diss_menues))
609 foreach($this->diss_menues as $node_id => $d_menu)
611 foreach($d_menu as $group => $menu)
613 if (count($menu) > 1)
615 foreach($menu as $menu_item)
617 $ttpl->setCurrentBlock(
"dmenu_cmd");
618 $ttpl->setVariable(
"SUBITEM", (
int) $menu_item[
"subitem"]);
619 $ttpl->setVariable(
"TXT_MENU_CMD", $menu_item[
"text"]);
620 $ttpl->parseCurrentBlock();
623 $ttpl->setCurrentBlock(
"disambiguation_menu");
624 $ttpl->setVariable(
"DNODE_ID", $node_id);
625 $ttpl->setVariable(
"GRP", $group);
626 $ttpl->parseCurrentBlock();
628 else if (count($menu) == 1)
631 $ttpl->setCurrentBlock(
"as_subitem_flag");
632 $ttpl->setVariable(
"SI_NODE_ID", $node_id);
633 $ttpl->setVariable(
"SI_GRP", $group);
634 $ttpl->setVariable(
"SI_SI", (
int) $menu[0][
"subitem"]);
635 $ttpl->parseCurrentBlock();
641 $this->diss_menues[$a_id][$a_group][] = array(
"type" => $a_type,
"text" => $a_diss_text);
644 if ($this->triggered_update_command !=
"")
646 $ttpl->setCurrentBlock(
"tr_update");
647 $ttpl->setVariable(
"UPDATE_CMD", $this->triggered_update_command);
648 $ttpl->parseCurrentBlock();
652 if (is_array($this->diss_menues))
654 foreach($this->diss_menues as $node_id => $d_menu)
656 foreach($d_menu as $group => $menu)
658 if (count($menu) > 1)
660 foreach($menu as $menu_item)
662 $ttpl->setCurrentBlock(
"dmenu_cmd");
663 $ttpl->setVariable(
"SUBITEM", (
int) $menu_item[
"subitem"]);
664 $ttpl->setVariable(
"TXT_MENU_CMD", $menu_item[
"text"]);
665 $ttpl->parseCurrentBlock();
668 $ttpl->setCurrentBlock(
"disambiguation_menu");
669 $ttpl->setVariable(
"DNODE_ID", $node_id);
670 $ttpl->setVariable(
"GRP", $group);
671 $ttpl->parseCurrentBlock();
673 else if (count($menu) == 1)
676 $ttpl->setCurrentBlock(
"as_subitem_flag");
677 $ttpl->setVariable(
"SI_NODE_ID", $node_id);
678 $ttpl->setVariable(
"SI_GRP", $group);
679 $ttpl->setVariable(
"SI_SI", (
int) $menu[0][
"subitem"]);
680 $ttpl->parseCurrentBlock();
686 $this->diss_menues[$a_id][$a_group][] = array(
"type" => $a_type,
"text" => $a_diss_text);
689 $ttpl->setVariable(
"NODES", $nodes_html);
693 $ttpl->setVariable(
"TITLE", $this->
getTitle());
708 include_once(
"./Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php");
710 $ttpl =
new ilTemplate(
"tpl.hierarchy_form_legend.html",
true,
true,
"Services/Form");
713 $ttpl->setCurrentBlock(
"help_drag");
714 $ttpl->setVariable(
"IMG_DRAG", $this->
getDragIcon());
715 $ttpl->setVariable(
"DRAG_ARROW",
717 $ttpl->setVariable(
"TXT_DRAG",
718 $lng->txt(
"form_hierarchy_drag_drop_help"));
720 $ttpl->parseCurrentBlock();
726 if ($help[
"image"] !=
"")
728 $ttpl->setCurrentBlock(
"help_img");
729 $ttpl->setVariable(
"IMG_HELP", $help[
"image"]);
730 $ttpl->parseCurrentBlock();
732 $ttpl->setCurrentBlock(
"help_item");
733 $ttpl->setVariable(
"TXT_HELP", $help[
"text"]);
734 $ttpl->parseCurrentBlock();
737 $ttpl->setVariable(
"TXT_ADD_EL",
738 $lng->txt(
"form_hierarchy_add_elements"));
757 $childs = $this->
getChilds($a_par_node[
"node_id"]);
761 $ttpl =
new ilTemplate(
"tpl.hierarchy_form_nodes.html",
true,
true,
"Services/Form");
764 if ($this->
nodeAllowsChilds($a_par_node) && (count($childs) > 0 || $a_depth == 0))
766 $ttpl->setCurrentBlock(
"drop_area");
767 $ttpl->setVariable(
"DNODE_ID", $a_par_node[
"node_id"].
"fc");
769 if (count($childs) == 0)
771 $ttpl->setVariable(
"NO_CONTENT_CLASS",
"ilCOPGNoPageContent");
772 $ttpl->setVariable(
"NO_CONTENT_TXT",
" ".$lng->txt(
"form_hier_click_to_add"));
774 $ttpl->parseCurrentBlock();
777 $menu_items = $this->
getMenuItems($a_par_node, $a_depth,
true, null, $childs);
779 if (count($menu_items) > 0)
783 foreach($menu_items as $menu_item)
785 if ($menu_item[
"multi"] > $max)
787 $max = $menu_item[
"multi"];
793 foreach($menu_items as $menu_item)
795 if ($menu_item[
"multi"] > 1)
797 for($i = 1; $i <= $menu_item[
"multi"]; $i++)
799 $ttpl->setCurrentBlock(
"multi_add");
800 $ttpl->setVariable(
"MA_NUM", $i);
801 $ttpl->setVariable(
"MENU_CMD", $menu_item[
"cmd"]);
802 $ttpl->setVariable(
"FC",
"1");
803 $ttpl->setVariable(
"CMD_NODE", $a_par_node[
"node_id"]);
804 $ttpl->setVariable(
"MCNT", $mcnt.
"fc");
805 $ttpl->parseCurrentBlock();
810 if ($max > $menu_item[
"multi"])
812 $ttpl->setCurrentBlock(
"multi_buffer");
813 $ttpl->setVariable(
"BUF_SPAN", $max - $menu_item[
"multi"]);
814 $ttpl->parseCurrentBlock();
816 $ttpl->setCurrentBlock(
"menu_cmd");
817 $ttpl->setVariable(
"TXT_MENU_CMD", $menu_item[
"text"]);
818 $ttpl->setVariable(
"MENU_CMD", $menu_item[
"cmd"]);
819 $ttpl->setVariable(
"CMD_NODE", $a_par_node[
"node_id"]);
820 $ttpl->setVariable(
"FC",
"1");
821 $ttpl->setVariable(
"MCNT", $mcnt.
"fc");
822 $ttpl->parseCurrentBlock();
825 $ttpl->setCurrentBlock(
"drop_area_menu");
826 $ttpl->setVariable(
"MNODE_ID", $a_par_node[
"node_id"].
"fc");
827 $ttpl->parseCurrentBlock();
829 $ttpl->setCurrentBlock(
"element");
830 $ttpl->parseCurrentBlock();
835 if (count($childs) > 0)
837 for($i = 0; $i < count($childs); $i++)
839 $next_sibling = ($i < (count($childs) - 1))
840 ? $next_sibling = $childs[$i+1]
843 $this->
renderChild($ttpl, $childs[$i], $a_depth, $next_sibling);
844 $last_child = $child;
848 $html = $ttpl->get();
857 function renderChild($a_tpl, $a_child, $a_depth, $next_sibling = null)
862 $a_tpl->setCurrentBlock(
"img");
863 $a_tpl->setVariable(
"IMGPATH", $this->
getChildIcon($a_child));
865 $a_tpl->setVariable(
"IMG_NODE", $a_child[
"node_id"]);
866 $a_tpl->setVariable(
"NODE_ID", $a_child[
"node_id"]);
867 $a_tpl->setVariable(
"TYPE", $a_child[
"type"]);
868 $a_tpl->parseCurrentBlock();
871 $a_tpl->setCurrentBlock(
"cbox");
872 $a_tpl->setVariable(
"CNODE_ID", $a_child[
"node_id"]);
874 $a_tpl->parseCurrentBlock();
879 $a_tpl->setCurrentBlock(
"node_info");
880 $a_tpl->setVariable(
"NODE_INFO", $info);
881 $a_tpl->parseCurrentBlock();
886 if (is_array($child_commands))
888 foreach($child_commands as $command)
890 $a_tpl->setCurrentBlock(
"node_cmd");
891 $a_tpl->setVariable(
"HREF_NODE_CMD", $command[
"link"]);
892 $a_tpl->setVariable(
"TXT_NODE_CMD", $command[
"text"]);
893 $a_tpl->parseCurrentBlock();
898 $a_tpl->setCurrentBlock(
"text");
900 if (is_array($hl) && in_array($a_child[
"node_id"], $hl))
902 $a_tpl->setVariable(
"CLASS",
' class="ilHFormHighlighted" ');
905 $a_tpl->setVariable(
"TNODE_ID", $a_child[
"node_id"]);
906 $a_tpl->parseCurrentBlock();
908 $grandchilds_html = $this->
getLevelHTML($a_child, $a_depth + 1, $grandchilds);
911 if ($this->
getFocusId() == $a_child[
"node_id"])
913 $a_tpl->setCurrentBlock(
"focus");
914 $a_tpl->setVariable(
"FNODE_ID", $a_child[
"node_id"]);
915 $a_tpl->parseCurrentBlock();
921 $a_tpl->setCurrentBlock(
"expand_icon");
922 if (!is_null($grandchilds) && count($grandchilds) > 0)
924 if (!in_array($a_child[
"node_id"],$this->
getExpanded()))
928 $a_tpl->setVariable(
"HREF_NAME",
"n".$a_child[
"node_id"]);
929 $a_tpl->setVariable(
"HREF_EXPAND",
930 $ilCtrl->getLinkTarget($this->getParentObject(), $this->
getParentCommand(),
"n".$a_child[
"node_id"]));
931 $grandchilds_html =
"";
937 $a_tpl->setVariable(
"HREF_NAME",
"n".$a_child[
"node_id"]);
938 $a_tpl->setVariable(
"HREF_EXPAND",
939 $ilCtrl->getLinkTarget($this->getParentObject(), $this->
getParentCommand(),
"n".$a_child[
"node_id"]));
947 $a_tpl->parseCurrentBlock();
951 $a_tpl->setCurrentBlock(
"list_item");
952 $a_tpl->setVariable(
"CHILDS", $grandchilds_html);
953 $a_tpl->parseCurrentBlock();
955 $a_tpl->setCurrentBlock(
"element");
956 $a_tpl->parseCurrentBlock();
959 $a_tpl->setCurrentBlock(
"drop_area");
960 $a_tpl->setVariable(
"DNODE_ID", $a_child[
"node_id"]);
962 $a_tpl->parseCurrentBlock();
965 $this->
manageDragAndDrop($a_child, $a_depth,
false, $next_sibling, $grandchilds);
968 $menu_items = $this->
getMenuItems($a_child, $a_depth,
false, $next_sibling, $grandchilds);
969 if (count($menu_items) > 0)
973 foreach($menu_items as $menu_item)
975 if ($menu_item[
"multi"] > $max)
977 $max = $menu_item[
"multi"];
983 foreach($menu_items as $menu_item)
985 if ($menu_item[
"multi"] > 1 )
987 for($i = 1; $i <= $menu_item[
"multi"]; $i++)
989 $a_tpl->setCurrentBlock(
"multi_add");
990 $a_tpl->setVariable(
"MA_NUM", $i);
991 $a_tpl->setVariable(
"MENU_CMD", $menu_item[
"cmd"]);
992 if ($menu_item[
"as_subitem"])
994 $a_tpl->setVariable(
"FC",
"1");
995 $a_tpl->setVariable(
"MCNT", $mcnt.
"fc");
999 $a_tpl->setVariable(
"FC",
"0");
1000 $a_tpl->setVariable(
"MCNT", $mcnt);
1002 $a_tpl->setVariable(
"CMD_NODE", $a_child[
"node_id"]);
1003 $a_tpl->parseCurrentBlock();
1008 if ($max > $menu_item[
"multi"])
1010 $a_tpl->setCurrentBlock(
"multi_buffer");
1011 $a_tpl->setVariable(
"BUF_SPAN", $max - $menu_item[
"multi"]);
1012 $a_tpl->parseCurrentBlock();
1015 $a_tpl->setCurrentBlock(
"menu_cmd");
1016 $a_tpl->setVariable(
"TXT_MENU_CMD", $menu_item[
"text"]);
1017 $a_tpl->setVariable(
"MENU_CMD", $menu_item[
"cmd"]);
1018 if ($menu_item[
"as_subitem"])
1020 $a_tpl->setVariable(
"FC",
"1");
1021 $a_tpl->setVariable(
"MCNT", $mcnt.
"fc");
1025 $a_tpl->setVariable(
"FC",
"0");
1026 $a_tpl->setVariable(
"MCNT", $mcnt);
1028 $a_tpl->setVariable(
"CMD_NODE", $a_child[
"node_id"]);
1029 $a_tpl->parseCurrentBlock();
1032 $a_tpl->setCurrentBlock(
"drop_area_menu");
1033 $a_tpl->setVariable(
"MNODE_ID", $a_child[
"node_id"]);
1034 $a_tpl->parseCurrentBlock();
1037 $a_tpl->setCurrentBlock(
"element");
1038 $a_tpl->parseCurrentBlock();
1062 return $lng->txt($a_item[
"type"]);
1084 return $a_child[
"title"];
1110 function getMenuItems($a_node, $a_depth, $a_first_child =
false, $a_next_sibling = null, $a_childs = null)
1130 function manageDragAndDrop($a_node, $a_depth, $a_first_child =
false, $a_next_sibling = null, $a_childs = null)
1141 return (
int) (
$_POST[
"il_hform_multi"] > 1
1142 ?
$_POST[
"il_hform_multi"]
1151 return $_POST[
"il_hform_node"];
1159 return (((
int)
$_POST[
"il_hform_fc"]) == 1);
1170 return parent::getHTML().$this->getLegend();
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
static get($a_glyph, $a_text="")
Get glyph html.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
special template class to simplify handling of ITX/PEAR
static initDragDrop()
Init YUI Drag and Drop.