33 $this->ctrl = $DIC->ctrl();
43 $this->as_dropdown = $a_val;
44 $this->dd_pullright = $a_pullright;
65 $this->items[] = array(
"type" =>
"group_head",
"content" => $a_content,
66 "add_class" => $a_add_class);
74 $this->items[] = array(
"type" =>
"sep");
82 $this->items[] = array(
"type" =>
"next_col");
83 $this->multi_column =
true;
100 $a_tt_my =
"right center",
101 $a_tt_at =
"left center",
102 $a_tt_use_htmlspecialchars =
true 104 $this->items[] = array(
"type" =>
"entry",
"content" => $a_content,
105 "href" => $a_href,
"target" => $a_target,
"onclick" => $a_onclick,
106 "add_class" => $a_add_class,
"id" => $a_id,
"ttip" => $a_ttip,
107 "tt_my" => $a_tt_my,
"tt_at" => $a_tt_at,
108 "tt_use_htmlspecialchars" => $a_tt_use_htmlspecialchars);
122 $tpl =
new ilTemplate(
"tpl.grouped_list.html",
true,
true,
"Services/UIComponent/GroupedList");
124 foreach ($this->items as
$i) {
125 switch ($i[
"type"]) {
127 $tpl->touchBlock(
"sep");
128 $tpl->touchBlock(
"item");
132 $tpl->touchBlock(
"next_col");
133 $tpl->touchBlock(
"item");
137 $tpl->setCurrentBlock(
"group_head");
138 if ($i[
"add_class"] !=
"") {
139 $tpl->setVariable(
"ADD_CLASS", $i[
"add_class"]);
141 $tpl->setVariable(
"GROUP_HEAD", $i[
"content"]);
142 $tpl->parseCurrentBlock();
143 $tpl->touchBlock(
"item");
147 if ($i[
"href"] !=
"") {
148 $tpl->setCurrentBlock(
"linked_entry");
149 if ($i[
"add_class"] !=
"") {
150 $tpl->setVariable(
"ADD_CLASS", $i[
"add_class"]);
153 $tpl->setVariable(
"TXT_ENTRY", $i[
"content"]);
154 if ($i[
"target"] !=
"") {
155 $tpl->setVariable(
"TARGET",
'target="' . $i[
"target"] .
'"');
157 $tpl->setVariable(
"TARGET",
'target="_top"');
159 if ($i[
"onclick"] !=
"") {
160 $tpl->setVariable(
"ONCLICK",
'onclick="' . $i[
"onclick"] .
'"');
162 if ($i[
"id"] !=
"") {
163 $tpl->setVariable(
"ID",
'id="' . $i[
"id"] .
'"');
165 $tpl->parseCurrentBlock();
166 $tpl->touchBlock(
"item");
167 if ($i[
"ttip"] !=
"" && $i[
"id"] !=
"") {
168 include_once(
"./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
169 if ($ilCtrl->isAsynch()) {
170 $tt_calls .=
" " . ilTooltipGUI::getTooltip(
176 $i[
"tt_use_htmlspecialchars"]
185 $i[
"tt_use_htmlspecialchars"]
190 $tpl->setCurrentBlock(
"unlinked_entry");
191 if ($i[
"add_class"] !=
"") {
192 $tpl->setVariable(
"ADD_CLASS2", $i[
"add_class"]);
194 $tpl->setVariable(
"TXT_ENTRY2", $i[
"content"]);
195 $tpl->parseCurrentBlock();
201 if ($this->multi_column) {
202 $tpl->touchBlock(
"multi_start");
203 $tpl->touchBlock(
"multi_end");
206 if ($tt_calls !=
"") {
207 $tpl->setCurrentBlock(
"script");
208 $tpl->setVariable(
"TT_CALLS", $tt_calls);
209 $tpl->parseCurrentBlock();
212 if ($this->
id !=
"") {
213 $tpl->setCurrentBlock(
"id");
214 $tpl->setVariable(
"ID", $this->
id);
215 $tpl->parseCurrentBlock();
219 if ($this->dd_pullright) {
220 $tpl->setVariable(
"LIST_CLASS",
"dropdown-menu pull-right");
222 $tpl->setVariable(
"LIST_CLASS",
"dropdown-menu");
224 $tpl->setVariable(
"LIST_ROLE",
'role="menu"');
226 $tpl->setVariable(
"LIST_CLASS",
"");
227 $tpl->setVariable(
"LIST_ROLE",
"");
setAsDropDown($a_val, $a_pullright=false)
Set as drop down.
getAsDropDown()
Get as drop down.
addSeparator()
Add separator.
addEntry( $a_content, $a_href="", $a_target="", $a_onclick="", $a_add_class="", $a_id="", $a_ttip="", $a_tt_my="right center", $a_tt_at="left center", $a_tt_use_htmlspecialchars=true)
Add entry.
addGroupHeader($a_content, $a_add_class="")
Add group header.
static secureUrl($url)
Prepare secure href attribute.
nextColumn()
Add separator.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
__construct($id="")
Constructor.