31 protected string $id =
'';
46 protected \ILIAS\DI\UIServices
$ui;
54 $this->
lng = $DIC->language();
55 $this->
ui = $DIC->ui();
65 bool $a_multipart =
false,
68 $this->form_action = $a_val;
69 $this->multipart = $a_multipart;
70 $this->form_target = $a_target;
82 $this->lead_img = array(
"img" => $a_img,
"alt" => $a_alt);
87 $this->hidden = $a_val;
95 public function setId(
string $a_val): void
102 return $this->
id ?: self::$instances;
107 $this->prevent_double_submission = $a_val;
121 string $a_target =
"",
122 ?
int $a_acc_key =
null,
123 string $a_additional_attrs =
'',
125 string $a_class =
'submit' 127 $this->items[] = array(
"type" =>
"button",
"txt" => $a_txt,
"cmd" => $a_cmd,
128 "target" => $a_target,
"acc_key" => $a_acc_key,
'add_attrs' => $a_additional_attrs,
129 "id" => $a_id,
"class" => $a_class);
138 ?
int $a_acc_key =
null,
139 bool $a_primary =
false,
140 ?
string $a_class =
null 144 $button->setPrimary(
true);
145 $button->setCaption($a_txt,
false);
146 $button->setCommand($a_cmd);
149 $this->items[] = array(
"type" =>
"fbutton",
"txt" => $a_txt,
"cmd" => $a_cmd,
150 "acc_key" => $a_acc_key,
"primary" => $a_primary,
"class" => $a_class);
156 bool $a_output_label =
false 158 $this->items[] = array(
"type" =>
"input",
"input" => $a_item,
"label" => $a_output_label);
169 bool $a_output_label =
false 171 $this->sticky_items[] = array(
"item" => $a_item,
"label" => $a_output_label);
183 $this->items[] = array(
"type" =>
"button_obj",
"instance" => $a_button);
191 $this->items[] = array(
"type" =>
"dropdown",
"txt" => $a_txt,
"dd_html" => $a_dd_html);
196 $this->items[] = array(
"type" =>
"adv_sel_list",
"list" => $adv);
201 $this->items[] = array(
"type" =>
"separator");
202 $this->has_separator =
true;
207 $this->items[] = array(
"type" =>
"text",
"text" => $a_text);
212 $this->items[] = array(
"type" =>
"spacer",
"width" => $a_width);
217 $this->items[] = array(
"type" =>
"component",
"component" => $a_comp);
223 bool $a_disabled =
false 225 $this->items[] = array(
"type" =>
"link",
"txt" => $a_caption,
"cmd" => $a_url,
"disabled" => $a_disabled);
231 $this->open_form_tag = $a_val;
241 $this->close_form_tag = $a_val;
251 $this->form_name = $a_val;
267 foreach ($this->items as $item) {
268 if ($item[
'type'] ===
'separator') {
282 public function getHTML():
string 288 if (count($this->items) || count($this->sticky_items)) {
289 $tpl =
new ilTemplate(
"tpl.toolbar.html",
true,
true,
"components/ILIAS/UIComponent/Toolbar");
290 $tpl->setVariable(
'TOOLBAR_ID', $this->
getId());
291 $tpl->setVariable(
'MORE_LABEL', $this->
lng->txt(
'toolbar_more_actions'));
293 if (count($this->sticky_items)) {
294 $tpl_sticky =
new ilTemplate(
"tpl.toolbar_sticky_items.html",
true,
true,
"components/ILIAS/UIComponent/Toolbar");
296 foreach ($this->sticky_items as $sticky_item) {
297 if ($sticky_item[
'label']) {
298 $tpl_sticky->setCurrentBlock(
'input_label');
299 $tpl_sticky->setVariable(
'INPUT_ID', $sticky_item[
'item']->getFieldId());
300 $tpl_sticky->setVariable(
'TXT_INPUT', $sticky_item[
'item']->
getTitle());
301 $tpl_sticky->parseCurrentBlock();
305 $tpl_sticky->setCurrentBlock(
'sticky_item');
306 $tpl_sticky->setVariable(
'STICKY_ITEM_HTML', $sticky_item[
'item']->getToolbarHTML());
307 $tpl_sticky->parseCurrentBlock();
309 $tpl_sticky->setCurrentBlock(
"sticky_item");
310 $tpl_sticky->setVariable(
"STICKY_ITEM_HTML", $this->
ui->renderer()->render($sticky_item[
'item']));
311 $tpl_sticky->parseCurrentBlock();
314 $tpl->setCurrentBlock(
'sticky_items');
315 $tpl->setVariable(
'STICKY_ITEMS', $tpl_sticky->get());
316 $tpl->parseCurrentBlock();
321 $tpl_items =
new ilTemplate(
"tpl.toolbar_items.html",
true,
true,
"components/ILIAS/UIComponent/Toolbar");
323 static $tpl_separator;
324 if ($tpl_separator ===
null) {
325 $tpl_separator =
new ilTemplate(
'tpl.toolbar_separator.html',
true,
true,
'components/ILIAS/UIComponent/Toolbar');
327 $tpl_separator->touchBlock(
'separator');
328 $markup_items .= $tpl_separator->get();
330 foreach ($group as $item) {
331 $tpl_items->setCurrentBlock(
"item");
332 switch ($item[
"type"]) {
334 $tpl_items->setVariable(
"BTN_TXT", $item[
"txt"]);
335 $tpl_items->setVariable(
"BTN_LINK", $item[
"cmd"]);
336 if ($item[
"target"] !=
"") {
337 $tpl_items->setVariable(
"BTN_TARGET",
'target="' . $item[
"target"] .
'"');
339 if ($item[
"id"] !=
"") {
340 $tpl_items->setVariable(
"BID",
'id="' . $item[
"id"] .
'"');
342 if (($item[
'add_attrs'])) {
343 $tpl_items->setVariable(
'BTN_ADD_ARG', $item[
'add_attrs']);
345 $tpl_items->setVariable(
'BTN_CLASS', $item[
'class']);
349 $tpl_items->setVariable(
"SUB_TXT", $item[
"txt"]);
350 $tpl_items->setVariable(
"SUB_CMD", $item[
"cmd"]);
351 if ($item[
"primary"]) {
352 $tpl_items->setVariable(
"SUB_CLASS",
" emphsubmit");
353 } elseif ($item[
"class"]) {
354 $tpl_items->setVariable(
"SUB_CLASS",
" " . $item[
"class"]);
359 $tpl_items->setVariable(
"BUTTON_OBJ", $item[
"instance"]->render());
363 if ($item[
"label"]) {
364 $tpl_items->setVariable(
"TXT_INPUT", $item[
"input"]->
getTitle());
365 $tpl_items->setVariable(
"INPUT_ID", $item[
"input"]->getFieldId());
367 $tpl_items->setVariable(
"INPUT_HTML", $item[
"input"]->getToolbarHTML());
372 $tpl_items->setVariable(
"TXT_DROPDOWN", $item[
"txt"]);
373 $tpl_items->setVariable(
"DROP_DOWN", $item[
"dd_html"]);
377 $tpl_items->setVariable(
"VAL_TEXT", $item[
"text"]);
381 $tpl_items->setVariable(
"COMPONENT", $this->
ui->renderer()->render($item[
"component"]));
385 $tpl_items->setVariable(
"COMPONENT", $item[
"list"]->getHTML());
386 $tpl_items->parseCurrentBlock();
390 if ($item[
"disabled"] ==
false) {
391 $tpl_items->setVariable(
"LINK_TXT", $item[
"txt"]);
392 $tpl_items->setVariable(
"LINK_URL", $item[
"cmd"]);
394 $tpl_items->setVariable(
"LINK_DISABLED_TXT", $item[
"txt"]);
398 $tpl_items->parseCurrentBlock();
400 $tpl_itemgroups =
new ilTemplate(
"tpl.toolbar_itemgroup.html",
true,
true,
'components/ILIAS/UIComponent/Toolbar');
401 $tpl_itemgroups->setCurrentBlock(
"itemgroup");
402 $tpl_itemgroups->setVariable(
"ITEMS", $tpl_items->get());
403 $tpl_itemgroups->parseCurrentBlock();
404 $markup_items .= $tpl_itemgroups->get();
407 $tpl->setVariable(
'ITEMS', $markup_items);
408 $tpl->setVariable(
"TXT_FUNCTIONS", $lng->
txt(
"functions"));
409 if ($this->lead_img[
"img"] !=
"") {
410 $tpl->setCurrentBlock(
"lead_image");
411 $tpl->setVariable(
"IMG_SRC", $this->lead_img[
"img"]);
412 $tpl->setVariable(
"IMG_ALT", $this->lead_img[
"alt"]);
413 $tpl->parseCurrentBlock();
419 $GLOBALS[
"tpl"]->addJavaScript(
"assets/js/Form.js");
422 $tpl->setCurrentBlock(
"form_open");
425 $tpl->setVariable(
"FORM_CLASS",
"preventDoubleSubmission");
427 if ($this->multipart) {
428 $tpl->setVariable(
"ENC_TYPE",
'enctype="multipart/form-data"');
430 if ($this->form_target !==
"") {
431 $tpl->setVariable(
"TARGET",
' target="' . $this->form_target .
'" ');
433 if ($this->form_name !==
"") {
434 $tpl->setVariable(
"FORMNAME",
'name="' . $this->
getFormName() .
'"');
437 $tpl->parseCurrentBlock();
440 $tpl->touchBlock(
"form_close");
445 if ($this->
getId() !==
"") {
446 $tpl->setVariable(
"ID",
' id="' . $this->
getId() .
'" ');
451 $tpl->setVariable(
"HIDDEN_CLASS",
'ilNoDisplay');
476 if (count($this->items) === 1 && count($this->sticky_items) === 0) {
477 $supported_types = [
'button',
'fbutton',
'button_obj'];
478 $item = $this->items[0];
479 if (!in_array($item[
'type'], $supported_types)) {
483 switch ($item[
'type']) {
485 $button = $item[
'instance'];
489 $button->setPrimary($item[
'primary']);
490 $button->setCaption($item[
'txt'],
false);
491 $button->setCommand($item[
'cmd']);
495 $button->setCaption($item[
'txt'],
false);
496 $button->setUrl($item[
'cmd']);
497 $button->setTarget($item[
'target']);
498 $button->setId($item[
'id']);
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)