29 protected string $id =
'';
44 protected \ILIAS\DI\UIServices
$ui;
52 $this->
lng = $DIC->language();
53 $this->
ui = $DIC->ui();
63 bool $a_multipart =
false,
66 $this->form_action = $a_val;
67 $this->multipart = $a_multipart;
68 $this->form_target = $a_target;
80 $this->lead_img = array(
"img" => $a_img,
"alt" => $a_alt);
85 $this->hidden = $a_val;
93 public function setId(
string $a_val): void
100 return $this->
id ?: self::$instances;
105 $this->prevent_double_submission = $a_val;
119 string $a_target =
"",
120 ?
int $a_acc_key = null,
121 string $a_additional_attrs =
'',
123 string $a_class =
'submit' 125 $this->items[] = array(
"type" =>
"button",
"txt" => $a_txt,
"cmd" => $a_cmd,
126 "target" => $a_target,
"acc_key" => $a_acc_key,
'add_attrs' => $a_additional_attrs,
127 "id" => $a_id,
"class" => $a_class);
136 ?
int $a_acc_key = null,
137 bool $a_primary =
false,
138 ?
string $a_class = null
142 $button->setPrimary(
true);
143 $button->setCaption($a_txt,
false);
144 $button->setCommand($a_cmd);
147 $this->items[] = array(
"type" =>
"fbutton",
"txt" => $a_txt,
"cmd" => $a_cmd,
148 "acc_key" => $a_acc_key,
"primary" => $a_primary,
"class" => $a_class);
154 bool $a_output_label =
false 156 $this->items[] = array(
"type" =>
"input",
"input" => $a_item,
"label" => $a_output_label);
167 bool $a_output_label =
false 169 $this->sticky_items[] = array(
"item" => $a_item,
"label" => $a_output_label);
181 $this->items[] = array(
"type" =>
"button_obj",
"instance" => $a_button);
189 $this->items[] = array(
"type" =>
"dropdown",
"txt" => $a_txt,
"dd_html" => $a_dd_html);
194 $this->items[] = array(
"type" =>
"adv_sel_list",
"list" => $adv);
199 $this->items[] = array(
"type" =>
"separator");
200 $this->has_separator =
true;
205 $this->items[] = array(
"type" =>
"text",
"text" => $a_text);
210 $this->items[] = array(
"type" =>
"spacer",
"width" => $a_width);
215 $this->items[] = array(
"type" =>
"component",
"component" => $a_comp);
221 bool $a_disabled =
false 223 $this->items[] = array(
"type" =>
"link",
"txt" => $a_caption,
"cmd" => $a_url,
"disabled" => $a_disabled);
229 $this->open_form_tag = $a_val;
239 $this->close_form_tag = $a_val;
249 $this->form_name = $a_val;
265 foreach ($this->items as $item) {
266 if ($item[
'type'] ===
'separator') {
280 public function getHTML():
string 286 if (count($this->items) || count($this->sticky_items)) {
287 $tpl =
new ilTemplate(
"tpl.toolbar.html",
true,
true,
"Services/UIComponent/Toolbar");
288 $tpl->setVariable(
'TOOLBAR_ID', $this->
getId());
289 $tpl->setVariable(
'MORE_LABEL', $this->
lng->txt(
'toolbar_more_actions'));
291 if (count($this->sticky_items)) {
292 $tpl_sticky =
new ilTemplate(
"tpl.toolbar_sticky_items.html",
true,
true,
"Services/UIComponent/Toolbar");
294 foreach ($this->sticky_items as $sticky_item) {
295 if ($sticky_item[
'label']) {
296 $tpl_sticky->setCurrentBlock(
'input_label');
297 $tpl_sticky->setVariable(
'INPUT_ID', $sticky_item[
'item']->getFieldId());
298 $tpl_sticky->setVariable(
'TXT_INPUT', $sticky_item[
'item']->getTitle());
299 $tpl_sticky->parseCurrentBlock();
303 $tpl_sticky->setCurrentBlock(
'sticky_item');
304 $tpl_sticky->setVariable(
'STICKY_ITEM_HTML', $sticky_item[
'item']->getToolbarHTML());
305 $tpl_sticky->parseCurrentBlock();
307 $tpl_sticky->setCurrentBlock(
"sticky_item");
308 $tpl_sticky->setVariable(
"STICKY_ITEM_HTML", $this->
ui->renderer()->render($sticky_item[
'item']));
309 $tpl_sticky->parseCurrentBlock();
312 $tpl->setCurrentBlock(
'sticky_items');
313 $tpl->setVariable(
'STICKY_ITEMS', $tpl_sticky->get());
314 $tpl->parseCurrentBlock();
318 if (count($this->items) === 0) {
319 $tpl->setVariable(
'HIDE_TOGGLE_CLASS',
' hidden');
324 $tpl_items =
new ilTemplate(
"tpl.toolbar_items.html",
true,
true,
"Services/UIComponent/Toolbar");
326 static $tpl_separator;
327 if ($tpl_separator === null) {
328 $tpl_separator =
new ilTemplate(
'tpl.toolbar_separator.html',
true,
true,
'Services/UIComponent/Toolbar');
330 $tpl_separator->touchBlock(
'separator');
331 $markup_items .= $tpl_separator->get();
333 foreach ($group as $item) {
334 switch ($item[
"type"]) {
336 $tpl_items->setCurrentBlock(
"button");
337 $tpl_items->setVariable(
"BTN_TXT", $item[
"txt"]);
338 $tpl_items->setVariable(
"BTN_LINK", $item[
"cmd"]);
339 if ($item[
"target"] !=
"") {
340 $tpl_items->setVariable(
"BTN_TARGET",
'target="' . $item[
"target"] .
'"');
342 if ($item[
"id"] !=
"") {
343 $tpl_items->setVariable(
"BID",
'id="' . $item[
"id"] .
'"');
345 if (($item[
'add_attrs'])) {
346 $tpl_items->setVariable(
'BTN_ADD_ARG', $item[
'add_attrs']);
348 $tpl_items->setVariable(
'BTN_CLASS', $item[
'class']);
349 $tpl_items->parseCurrentBlock();
350 $tpl_items->touchBlock(
"item");
354 $tpl_items->setCurrentBlock(
"form_button");
355 $tpl_items->setVariable(
"SUB_TXT", $item[
"txt"]);
356 $tpl_items->setVariable(
"SUB_CMD", $item[
"cmd"]);
357 if ($item[
"primary"]) {
358 $tpl_items->setVariable(
"SUB_CLASS",
" emphsubmit");
359 } elseif ($item[
"class"]) {
360 $tpl_items->setVariable(
"SUB_CLASS",
" " . $item[
"class"]);
362 $tpl_items->parseCurrentBlock();
363 $tpl_items->touchBlock(
"item");
367 $tpl_items->setCurrentBlock(
"button_instance");
368 $tpl_items->setVariable(
"BUTTON_OBJ", $item[
"instance"]->render());
369 $tpl_items->parseCurrentBlock();
370 $tpl_items->touchBlock(
"item");
374 if ($item[
"label"]) {
375 $tpl_items->setCurrentBlock(
"input_label");
376 $tpl_items->setVariable(
"TXT_INPUT", $item[
"input"]->getTitle());
377 $tpl_items->setVariable(
"INPUT_ID", $item[
"input"]->getFieldId());
378 $tpl_items->parseCurrentBlock();
380 $tpl_items->setCurrentBlock(
"input");
381 $tpl_items->setVariable(
"INPUT_HTML", $item[
"input"]->getToolbarHTML());
382 $tpl_items->parseCurrentBlock();
383 $tpl_items->touchBlock(
"item");
388 $tpl_items->setCurrentBlock(
"dropdown");
389 $tpl_items->setVariable(
"TXT_DROPDOWN", $item[
"txt"]);
390 $tpl_items->setVariable(
"DROP_DOWN", $item[
"dd_html"]);
391 $tpl_items->parseCurrentBlock();
392 $tpl_items->touchBlock(
"item");
396 $tpl_items->setCurrentBlock(
"text");
397 $tpl_items->setVariable(
"VAL_TEXT", $item[
"text"]);
398 $tpl_items->touchBlock(
"item");
402 $tpl_items->setCurrentBlock(
"component");
403 $tpl_items->setVariable(
"COMPONENT", $this->
ui->renderer()->render($item[
"component"]));
404 $tpl_items->touchBlock(
"item");
408 $tpl_items->setCurrentBlock(
"component");
409 $tpl_items->setVariable(
"COMPONENT", $item[
"list"]->getHTML());
410 $tpl_items->touchBlock(
"item");
415 $tpl_items->touchBlock(
"spacer");
416 if (!$item[
"width"]) {
419 $tpl_items->setVariable(
"SPACER_WIDTH", $item[
"width"]);
420 $tpl_items->touchBlock(
"item");
424 if ($item[
"disabled"] ==
false) {
425 $tpl_items->setCurrentBlock(
"link");
426 $tpl_items->setVariable(
"LINK_TXT", $item[
"txt"]);
427 $tpl_items->setVariable(
"LINK_URL", $item[
"cmd"]);
429 $tpl_items->setCurrentBlock(
"link_disabled");
430 $tpl_items->setVariable(
"LINK_DISABLED_TXT", $item[
"txt"]);
433 $tpl_items->parseCurrentBlock();
434 $tpl_items->touchBlock(
"item");
438 $li = (count($group) > 1) ?
"<li class='ilToolbarGroup'>" :
"<li>";
439 $markup_items .= $li . $tpl_items->get() .
'</li>';
442 $tpl->setVariable(
'ITEMS', $markup_items);
443 $tpl->setVariable(
"TXT_FUNCTIONS", $lng->
txt(
"functions"));
444 if ($this->lead_img[
"img"] !=
"") {
445 $tpl->setCurrentBlock(
"lead_image");
446 $tpl->setVariable(
"IMG_SRC", $this->lead_img[
"img"]);
447 $tpl->setVariable(
"IMG_ALT", $this->lead_img[
"alt"]);
448 $tpl->parseCurrentBlock();
454 $GLOBALS[
"tpl"]->addJavaScript(
"Services/Form/js/Form.js");
457 $tpl->setCurrentBlock(
"form_open");
460 $tpl->setVariable(
"FORM_CLASS",
"preventDoubleSubmission");
462 if ($this->multipart) {
463 $tpl->setVariable(
"ENC_TYPE",
'enctype="multipart/form-data"');
465 if ($this->form_target !==
"") {
466 $tpl->setVariable(
"TARGET",
' target="' . $this->form_target .
'" ');
468 if ($this->form_name !==
"") {
472 $tpl->parseCurrentBlock();
475 $tpl->touchBlock(
"form_close");
480 if ($this->
getId() !==
"") {
481 $tpl->setVariable(
"ID",
' id="' . $this->
getId() .
'" ');
486 $tpl->setVariable(
"HIDDEN_CLASS",
'ilNoDisplay');
511 if (count($this->items) === 1 && count($this->sticky_items) === 0) {
512 $supported_types = [
'button',
'fbutton',
'button_obj'];
513 $item = $this->items[0];
514 if (!in_array($item[
'type'], $supported_types)) {
518 switch ($item[
'type']) {
520 $button = $item[
'instance'];
524 $button->setPrimary($item[
'primary']);
525 $button->setCaption($item[
'txt'],
false);
526 $button->setCommand($item[
'cmd']);
530 $button->setCaption($item[
'txt'],
false);
531 $button->setUrl($item[
'cmd']);
532 $button->setTarget($item[
'target']);
533 $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...
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
__construct(Container $dic, ilPlugin $plugin)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl