2 require_once(
'./Services/UIComponent/Button/classes/class.ilSubmitButton.php');
3 require_once(
'./Services/UIComponent/Button/classes/class.ilLinkButton.php');
96 $this->lng = $DIC->language();
98 $this->
ui = $DIC->ui();
112 $this->form_action = $a_val;
113 $this->multipart = $a_multipart;
114 $this->form_target = $a_target;
136 $this->lead_img = array(
"img" => $a_img,
"alt" => $a_alt);
146 $this->hidden = $a_val;
176 return $this->
id ? $this->
id : self::$instances;
186 $this->prevent_double_submission = $a_val;
214 $a_additional_attrs =
'',
218 $this->items[] = array(
"type" =>
"button",
"txt" => $a_txt,
"cmd" => $a_cmd,
219 "target" => $a_target,
"acc_key" => $a_acc_key,
'add_attrs' => $a_additional_attrs,
220 "id" => $a_id,
"class" => $a_class);
234 public function addFormButton($a_txt, $a_cmd, $a_acc_key =
"", $a_primary =
false, $a_class =
false)
238 $button->setPrimary(
true);
239 $button->setCaption($a_txt,
false);
240 $button->setCommand($a_cmd);
241 $button->setAccessKey($a_acc_key);
244 $this->items[] = array(
"type" =>
"fbutton",
"txt" => $a_txt,
"cmd" => $a_cmd,
245 "acc_key" => $a_acc_key,
"primary" => $a_primary,
"class" => $a_class);
258 $this->items[] = array(
"type" =>
"input",
"input" => $a_item,
"label" => $a_output_label);
271 $this->sticky_items[] = array(
"item" => $a_item,
"label" => $a_output_label);
285 $this->items[] = array(
"type" =>
"button_obj",
"instance" => $a_button);
294 $this->items[] = array(
"type" =>
"dropdown",
"txt" => $a_txt,
"dd_html" => $a_dd_html);
302 $this->items[] = array(
"type" =>
"adv_sel_list",
"list" => $adv);
311 $this->items[] = array(
"type" =>
"separator");
312 $this->has_separator =
true;
320 $this->items[] = array(
"type" =>
"text",
"text" => $a_text);
328 $this->items[] = array(
"type" =>
"spacer",
"width" => $a_width);
336 $this->items[] = array(
"type" =>
"component",
"component" => $a_comp);
346 public function addLink($a_caption, $a_url, $a_disabled =
false)
348 $this->items[] = array(
"type" =>
"link",
"txt" => $a_caption,
"cmd" => $a_url,
"disabled" => $a_disabled);
358 $this->open_form_tag = $a_val;
378 $this->close_form_tag = $a_val;
398 $this->form_name = $a_val;
421 foreach ($this->items as $item) {
422 if ($item[
'type'] ==
'separator') {
439 public function getHTML()
445 if (count($this->items) || count($this->sticky_items)) {
446 $tpl =
new ilTemplate(
"tpl.toolbar.html",
true,
true,
"Services/UIComponent/Toolbar");
447 $tpl->setVariable(
'TOOLBAR_ID', $this->
getId());
448 if (count($this->sticky_items)) {
449 $tpl_sticky =
new ilTemplate(
"tpl.toolbar_sticky_items.html",
true,
true,
"Services/UIComponent/Toolbar");
451 foreach ($this->sticky_items as $sticky_item) {
452 if ($sticky_item[
'label']) {
453 $tpl_sticky->setCurrentBlock(
'input_label');
454 $tpl_sticky->setVariable(
'INPUT_ID', $sticky_item[
'item']->getFieldId());
455 $tpl_sticky->setVariable(
'TXT_INPUT', $sticky_item[
'item']->getTitle());
456 $tpl_sticky->parseCurrentBlock();
460 $tpl_sticky->setCurrentBlock(
'sticky_item');
461 $tpl_sticky->setVariable(
'STICKY_ITEM_HTML', $sticky_item[
'item']->getToolbarHTML());
462 $tpl_sticky->parseCurrentBlock();
464 $tpl_sticky->setCurrentBlock(
"sticky_item");
465 $tpl_sticky->setVariable(
"STICKY_ITEM_HTML", $this->
ui->renderer()->render($sticky_item[
'item']));
466 $tpl_sticky->parseCurrentBlock();
469 $tpl->setCurrentBlock(
'sticky_items');
470 $tpl->setVariable(
'STICKY_ITEMS', $tpl_sticky->get());
471 $tpl->parseCurrentBlock();
475 if (count($this->items) == 0) {
476 $tpl->setVariable(
'HIDE_TOGGLE_CLASS',
' hidden');
481 $tpl_items =
new ilTemplate(
"tpl.toolbar_items.html",
true,
true,
"Services/UIComponent/Toolbar");
483 static $tpl_separator;
484 if ($tpl_separator === null) {
485 $tpl_separator =
new ilTemplate(
'tpl.toolbar_separator.html',
true,
true,
'Services/UIComponent/Toolbar');
487 $tpl_separator->touchBlock(
'separator');
488 $markup_items .= $tpl_separator->get();
490 foreach ($group as $item) {
491 switch ($item[
"type"]) {
493 $tpl_items->setCurrentBlock(
"button");
494 $tpl_items->setVariable(
"BTN_TXT", $item[
"txt"]);
495 $tpl_items->setVariable(
"BTN_LINK", $item[
"cmd"]);
496 if ($item[
"target"] !=
"") {
497 $tpl_items->setVariable(
"BTN_TARGET",
'target="' . $item[
"target"] .
'"');
499 if ($item[
"id"] !=
"") {
500 $tpl_items->setVariable(
"BID",
'id="' . $item[
"id"] .
'"');
502 if ($item[
"acc_key"] !=
"") {
503 include_once(
"./Services/Accessibility/classes/class.ilAccessKeyGUI.php");
504 $tpl_items->setVariable(
509 if (($item[
'add_attrs'])) {
510 $tpl_items->setVariable(
'BTN_ADD_ARG', $item[
'add_attrs']);
512 $tpl_items->setVariable(
'BTN_CLASS', $item[
'class']);
513 $tpl_items->parseCurrentBlock();
514 $tpl_items->touchBlock(
"item");
518 $tpl_items->setCurrentBlock(
"form_button");
519 $tpl_items->setVariable(
"SUB_TXT", $item[
"txt"]);
520 $tpl_items->setVariable(
"SUB_CMD", $item[
"cmd"]);
521 if ($item[
"primary"]) {
522 $tpl_items->setVariable(
"SUB_CLASS",
" emphsubmit");
523 } elseif ($item[
"class"]) {
524 $tpl_items->setVariable(
"SUB_CLASS",
" " . $item[
"class"]);
526 $tpl_items->parseCurrentBlock();
527 $tpl_items->touchBlock(
"item");
531 $tpl_items->setCurrentBlock(
"button_instance");
532 $tpl_items->setVariable(
"BUTTON_OBJ", $item[
"instance"]->render());
533 $tpl_items->parseCurrentBlock();
534 $tpl_items->touchBlock(
"item");
538 if ($item[
"label"]) {
539 $tpl_items->setCurrentBlock(
"input_label");
540 $tpl_items->setVariable(
"TXT_INPUT", $item[
"input"]->getTitle());
541 $tpl_items->setVariable(
"INPUT_ID", $item[
"input"]->getFieldId());
542 $tpl_items->parseCurrentBlock();
544 $tpl_items->setCurrentBlock(
"input");
545 $tpl_items->setVariable(
"INPUT_HTML", $item[
"input"]->getToolbarHTML());
546 $tpl_items->parseCurrentBlock();
547 $tpl_items->touchBlock(
"item");
552 $tpl_items->setCurrentBlock(
"dropdown");
553 $tpl_items->setVariable(
"TXT_DROPDOWN", $item[
"txt"]);
554 $tpl_items->setVariable(
"DROP_DOWN", $item[
"dd_html"]);
555 $tpl_items->parseCurrentBlock();
556 $tpl_items->touchBlock(
"item");
560 $tpl_items->setCurrentBlock(
"text");
561 $tpl_items->setVariable(
"VAL_TEXT", $item[
"text"]);
562 $tpl_items->touchBlock(
"item");
566 $tpl_items->setCurrentBlock(
"component");
567 $tpl_items->setVariable(
"COMPONENT", $this->
ui->renderer()->render($item[
"component"]));
568 $tpl_items->touchBlock(
"item");
572 $tpl_items->setCurrentBlock(
"component");
573 $tpl_items->setVariable(
"COMPONENT", $item[
"list"]->getHTML());
574 $tpl_items->touchBlock(
"item");
579 $tpl_items->touchBlock(
"spacer");
580 if (!$item[
"width"]) {
583 $tpl_items->setVariable(
"SPACER_WIDTH", $item[
"width"]);
584 $tpl_items->touchBlock(
"item");
588 if ($item[
"disabled"] ==
false) {
589 $tpl_items->setCurrentBlock(
"link");
590 $tpl_items->setVariable(
"LINK_TXT", $item[
"txt"]);
591 $tpl_items->setVariable(
"LINK_URL", $item[
"cmd"]);
592 $tpl_items->parseCurrentBlock();
593 $tpl_items->touchBlock(
"item");
596 $tpl_items->setCurrentBlock(
"link_disabled");
597 $tpl_items->setVariable(
"LINK_DISABLED_TXT", $item[
"txt"]);
599 $tpl_items->parseCurrentBlock();
600 $tpl_items->touchBlock(
"item");
605 $li = (count($group) > 1) ?
"<li class='ilToolbarGroup'>" :
"<li>";
606 $markup_items .= $li . $tpl_items->get() .
'</li>';
609 $tpl->setVariable(
'ITEMS', $markup_items);
610 $tpl->setVariable(
"TXT_FUNCTIONS",
$lng->txt(
"functions"));
611 if ($this->lead_img[
"img"] !=
"") {
612 $tpl->setCurrentBlock(
"lead_image");
613 $tpl->setVariable(
"IMG_SRC", $this->lead_img[
"img"]);
614 $tpl->setVariable(
"IMG_ALT", $this->lead_img[
"alt"]);
615 $tpl->parseCurrentBlock();
621 $GLOBALS[
"tpl"]->addJavaScript(
"Services/Form/js/Form.js");
624 $tpl->setCurrentBlock(
"form_open");
627 $tpl->setVariable(
"FORM_CLASS",
"preventDoubleSubmission");
629 if ($this->multipart) {
630 $tpl->setVariable(
"ENC_TYPE",
'enctype="multipart/form-data"');
632 if ($this->form_target !=
"") {
633 $tpl->setVariable(
"TARGET",
' target="' . $this->form_target .
'" ');
635 if ($this->form_name !=
"") {
639 $tpl->parseCurrentBlock();
642 $tpl->touchBlock(
"form_close");
647 if ($this->
getId() !=
"") {
648 $tpl->setVariable(
"ID",
' id="' . $this->
getId() .
'" ');
653 $tpl->setVariable(
"HIDDEN_CLASS",
'ilNoDisplay');
687 if (count($this->items) == 1 && count($this->sticky_items) == 0) {
688 $supported_types = array(
'button',
'fbutton',
'button_obj');
689 $item = $this->items[0];
690 if (!in_array($item[
'type'], $supported_types)) {
694 switch ($item[
'type']) {
696 $button = $item[
'instance'];
700 $button->setPrimary($item[
'primary']);
701 $button->setCaption($item[
'txt'],
false);
702 $button->setCommand($item[
'cmd']);
703 $button->setAccessKey($item[
'acc_key']);
707 $button->setCaption($item[
'txt'],
false);
708 $button->setUrl($item[
'cmd']);
709 $button->setTarget($item[
'target']);
710 $button->setId($item[
'id']);
711 $button->setAccessKey($item[
'acc_key']);
715 $this->items = array();
Class ChatMainBarProvider .
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static getAttribute($a_func_id)
Get accesskey HTML attribute.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl