77 $this->lng = $DIC->language();
89 $this->links_mode = array(
90 "link_class" => $a_link_class);
100 $a_select_class =
"",
101 $a_include_form_tag =
false,
105 $a_form_target =
"_top",
107 $a_button_class =
"",
111 $this->form_mode = array(
112 "select_name" => $a_select_name,
113 "select_class" => $a_select_class,
114 "include_form_tag" => $a_include_form_tag,
115 "form_action" => $a_form_action,
116 "form_id" => $a_form_id,
117 "form_class" => $a_form_class,
118 "form_target" => $a_form_target,
119 "button_text" => $a_button_text,
120 "button_class" => $a_button_class,
121 "button_cmd" => $a_button_cmd
144 $a_prevent_background_click =
false,
147 $a_tt_my =
"right center",
148 $a_tt_at =
"left center",
149 $a_tt_use_htmlspecialchars =
true,
152 $this->items[] = array(
"title" => $a_title,
"value" => $a_value,
153 "link" => $a_link,
"img" => $a_img,
"alt" => $a_alt,
"frame" => $a_frame,
154 "html" => $a_html,
"prevent_background_click" => $a_prevent_background_click,
155 "onclick" => $a_onclick,
"ttip" => $a_ttip,
"tt_my" => $a_tt_my,
"tt_at" => $a_tt_at,
156 "tt_use_htmlspecialchars" => $a_tt_use_htmlspecialchars,
"data" => $a_data);
166 $this->grouped_list = $a_val;
181 $this->items = array();
201 $this->listtitle = $a_listtitle;
221 $this->aria_listtitle = $a_listtitle;
231 return strip_tags($this->aria_listtitle);
243 $this->selectionheaderclass = $a_selectionheaderclass;
253 return $this->selectionheaderclass;
263 $this->style = $a_val;
285 $this->sel_head_span_class = $a_val;
295 return $this->sel_head_span_class;
305 $this->headericon = $a_headericon;
315 return $this->headericon;
325 $this->nojslinkclass = $a_nojslinkclass;
335 return $this->nojslinkclass;
345 $this->itemlinkclass = $a_itemlinkclass;
355 return $this->itemlinkclass;
385 $this->useimages = $a_useimages;
395 return $this->useimages;
405 $this->access_key = $a_val;
423 $this->trigger_event = $a_val;
439 $this->auto_hide = $a_val;
462 $this->on_click = $a_val;
463 $this->on_click_form_id = $a_onclick_form_id;
473 return $this->on_click;
483 $this->selected_value = $a_val;
504 $this->toggle = array(
"el" => $a_el,
"class_on" => $a_on);
525 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
528 $this->asynch = $a_val;
548 $this->asynch_url = $a_val;
566 $this->select_callback = $a_val;
574 return $this->select_callback;
584 $this->dd_pullright = $a_val;
609 public function getHTML($a_only_cmd_list_asynch =
false)
623 $GLOBALS[
"tpl"]->addJavascript(
"./Services/UIComponent/AdvancedSelectionList/js/AdvancedSelectionList.js");
626 "tpl.adv_selection_list.html",
629 "Services/UIComponent/AdvancedSelectionList",
640 $tpl->setCurrentBlock(
"asynch_request");
642 $tpl->parseCurrentBlock();
647 foreach (
$items as $item) {
648 $item[
"value"] = htmlspecialchars($item[
"value"], ENT_QUOTES);
649 if (isset($item[
"ref_id"])) {
650 $sel_arr[$item[
"ref_id"]] = (isset($item[
"title"]))
654 $this->css_row = ($this->css_row !=
"tblrow1_mo")
660 $tpl->setCurrentBlock(
"image");
661 $tpl->setVariable(
"IMG_ITEM", $item[
"img"]);
662 $tpl->setVariable(
"ALT_ITEM", $item[
"alt"]);
663 $tpl->parseCurrentBlock();
665 $tpl->touchBlock(
"no_image");
672 if ($item[
"frame"]) {
673 $tpl->setCurrentBlock(
"frame");
674 $tpl->setVariable(
"TARGET_ITEM", $item[
"frame"]);
675 $tpl->parseCurrentBlock();
679 $tpl->setCurrentBlock(
"item_link_class");
681 $tpl->parseCurrentBlock();
684 if (is_array($item[
"data"])) {
685 foreach ($item[
"data"] as $k => $v) {
686 $tpl->setCurrentBlock(
"f_data");
687 $tpl->setVariable(
"DATA_KEY", $k);
689 $tpl->parseCurrentBlock();
692 if ($item[
"value"] !=
"") {
693 $tpl->setCurrentBlock(
"item_id");
694 $tpl->setVariable(
"ID_ITEM", $this->
getId() .
"_" . $item[
"value"]);
695 $tpl->parseCurrentBlock();
698 $tpl->setCurrentBlock(
"href_s");
699 $tpl->setVariable(
"HREF_ITEM",
'href="' . $item[
"link"] .
'"');
700 $tpl->parseCurrentBlock();
702 $tpl->touchBlock(
"href_e");
705 $tpl->setCurrentBlock(
"item");
708 if ($item[
"prevent_background_click"]) {
709 $tpl->setVariable(
"ONCLICK_ITEM",
'');
711 if ($item[
"onclick"] ==
"" && $item[
"frame"] !=
"") {
714 'onclick="' .
"return il.AdvancedSelectionList.openTarget('" . $item[
"link"] .
"','" . $item[
"frame"] .
"');" .
'"' 716 } elseif ($item[
"onclick"] !=
"") {
719 'onclick="' .
"return " . $item[
"onclick"] .
";" .
'"' 727 'onclick="return il.AdvancedSelectionList.submitForm(\'' . $this->
getId() .
'\'' .
728 ", '" . $this->form_mode[
"select_name"] .
"','" . $item[
"value"] .
"'," .
729 "'" . $this->on_click_form_id .
"','" . $this->form_mode[
"button_cmd"] .
"');\"" 735 'onclick="return il.AdvancedSelectionList.selectForm(\'' . $this->
getId() .
'\'' .
736 ", '" . $this->form_mode[
"select_name"] .
"','" . $item[
"value"] .
"'," .
737 "'" . $item[
"title"] .
"');\"" 743 'onclick="il.AdvancedSelectionList.clickNop(\'' . $this->
getId() .
'\'' .
744 ", '" . $this->form_mode[
"select_name"] .
"','" . $item[
"value"] .
"'," .
745 "'" . $item[
"title"] .
"');\"" 749 $tpl->setVariable(
"CSS_ROW", $this->css_row);
750 if ($item[
"html"] ==
"") {
751 $tpl->setVariable(
"TXT_ITEM", $item[
"title"]);
753 $tpl->setVariable(
"TXT_ITEM", $item[
"html"]);
756 $tpl->setVariable(
"ID_ITEM_TR", $this->
getId() .
"_" . $item[
"value"] .
"_tr");
757 if ($item[
"ttip"] !=
"") {
758 include_once(
"./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
760 $this->
getId() .
"_" . $item[
"value"] .
"_tr",
765 $item[
"tt_use_htmlspecialchars"]
769 $tpl->parseCurrentBlock();
772 $tpl->setCurrentBlock(
"js_item");
773 $tpl->setVariable(
"IT_ID", $this->
getId());
774 $tpl->setVariable(
"IT_HID_NAME", $this->form_mode[
"select_name"]);
775 $tpl->setVariable(
"IT_HID_VAL", $item[
"value"]);
776 $tpl->setVariable(
"IT_TITLE", str_replace(
"'",
"\\'", $item[
"title"]));
777 $tpl->parseCurrentBlock();
782 $tpl->setCurrentBlock(
"hidden_input");
783 $tpl->setVariable(
"HID", $this->
getId());
784 $tpl->parseCurrentBlock();
789 $tpl->setCurrentBlock(
"hidden_input");
790 $tpl->setVariable(
"HID", $this->
getId());
791 $tpl->parseCurrentBlock();
794 $tpl->setCurrentBlock(
"init_hidden_input");
795 $tpl->setVariable(
"H2ID", $this->
getId());
796 $tpl->setVariable(
"HID_NAME", $this->form_mode[
"select_name"]);
798 $tpl->parseCurrentBlock();
803 if ($a_only_cmd_list_asynch) {
804 $tpl->touchBlock(
"cmd_table");
805 return $tpl->get(
"cmd_table");
809 $tpl->setCurrentBlock(
"dd_content");
811 $tpl->setVariable(
"UL_CLASS",
"dropdown-menu pull-right");
813 $tpl->setVariable(
"UL_CLASS",
"dropdown-menu");
815 $tpl->setVariable(
"TABLE_ID", $this->
getId());
816 $tpl->parseCurrentBlock();
820 $tpl->setCurrentBlock(
"top_img");
831 $tpl->parseCurrentBlock();
836 $tpl->setCurrentBlock(
"asynch_bl");
838 $tpl->setVariable(
"ASYNCH_ID", $this->
getId());
839 $tpl->setVariable(
"ASYNCH_TRIGGER_ID", $this->
getId());
840 $tpl->parseCurrentBlock();
844 $tpl->setCurrentBlock(
"js_section");
846 include_once(
"./Services/Accessibility/classes/class.ilAccessKeyGUI.php");
856 $cfg[
"anchor_id"] =
"ilAdvSelListAnchorElement_" . $this->
getId();
863 $cfg[
"toggle_el"] =
$toggle[
"el"];
864 $cfg[
"toggle_class_on"] =
$toggle[
"class_on"];
867 include_once(
"./Services/JSON/classes/class.ilJsonUtil.php");
876 : $this->lng->txt(
"actions");
877 $tpl->setVariable(
"TXT_ARIA_TOP", $aria_title);
883 case self::STYLE_DEFAULT:
884 $tpl->setVariable(
"BTN_CLASS",
"btn btn-default");
885 $tpl->setVariable(
"TAG",
"button");
888 case self::STYLE_EMPH:
889 $tpl->setVariable(
"BTN_CLASS",
"btn btn-primary");
890 $tpl->setVariable(
"TAG",
"button");
893 case self::STYLE_LINK_BUTTON:
894 $tpl->setVariable(
"BTN_CLASS",
"btn btn-link");
895 $tpl->setVariable(
"TAG",
"button");
898 case self::STYLE_LINK:
899 $tpl->setVariable(
"BTN_CLASS",
"");
900 $tpl->setVariable(
"TAG",
"a");
901 $tpl->touchBlock(
"href_link");
908 "CLASS_SEL_TOP_SPAN",
917 $tpl->parseCurrentBlock();
setStyle($a_val)
Set style.
const ON_ITEM_CLICK_FORM_SELECT
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
setSelectionHeaderSpanClass($a_val)
Set selection header span class.
setHeaderIcon($a_headericon)
Set Header Icon.
setAdditionalToggleElement($a_el, $a_on)
Set additional toggle element.
setGroupedList($a_val)
Set Grouped List.
getUseImages()
Get Use Images.
getSelectCallback()
Get select callback.
const ON_ITEM_CLICK_FORM_SUBMIT
setAsynchUrl($a_val)
Set asynch url.
setListTitle($a_listtitle)
Set List Title.
getHeaderIcon()
Get Header Icon.
getAdditionalToggleElement()
Get additional toggle element.
static initConnection(ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
getSelectedValue()
Get selected value.
setSelectCallback($a_val)
Set select callback.
getAutoHide()
Get auto hide.
setSelectionHeaderClass($a_selectionheaderclass)
Set Selection Header Class.
setAriaListTitle($a_listtitle)
Set List Title.
getListTitle()
Get List Title.
setNoJSLinkClass($a_nojslinkclass)
Set No Javascript Link Style Class.
setPullRight($a_val)
Set pull right.
setOnClickMode($a_val, $a_onclick_form_id="")
Set "onClick"- Mode.
getNoJSLinkClass()
Get No Javascript Link Style Class.
getTriggerEvent()
Get trigger event.
setSelectedValue($a_val)
Set selected value.
getAriaListTitle()
Get List Title.
getSelectionHeaderSpanClass()
Get selection header span class.
getItemLinkClass()
Get Item Link Class.
static encode($mixed, $suppress_native=false)
__construct()
Constructor.
setFormSelectMode( $a_select_name, $a_select_class="", $a_include_form_tag=false, $a_form_action="", $a_form_id="", $a_form_class="", $a_form_target="_top", $a_button_text="", $a_button_class="", $a_button_cmd="")
Set form mode (for no js fallback)
setLinksMode($a_link_class="")
Set links mode (for no js fallback)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
addItem( $a_title, $a_value="", $a_link="", $a_img="", $a_alt="", $a_frame="", $a_html="", $a_prevent_background_click=false, $a_onclick="", $a_ttip="", $a_tt_my="right center", $a_tt_at="left center", $a_tt_use_htmlspecialchars=true, $a_data=array())
Add an item.
setAsynch($a_val)
Set asynch mode (this is set to true, if list should get items asynchronously)
setItemLinkClass($a_itemlinkclass)
Set Item Link Class.
getAsynch()
Get asynch mode.
getPullRight()
Get pull right.
getGroupedList()
Get Grouped List.
getHTML($a_only_cmd_list_asynch=false)
Get selection list HTML.
getAccessKey()
Get access key.
setAutoHide($a_val)
Set auto hide.
setTriggerEvent($a_val)
Set trigger event.
getAsynchUrl()
Get asynch url.
static getAttribute($a_func_id)
Get accesskey HTML attribute.
setUseImages($a_useimages)
Set Use Images.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
getSelectionHeaderClass()
Get Selection Header Class.
setAccessKey($a_val)
Set access key.
getOnClickMode()
Get "onClick"-Mode.