40 $this->ctrl = $DIC->ctrl();
42 $lng = $DIC->language();
46 $this->manual_activation =
false;
47 $this->subtab_manual_activation =
false;
48 $this->temp_var =
"TABS";
49 $this->sub_tabs =
false;
50 $this->back_title =
"";
51 $this->back_target =
"";
52 $this->back_2_target =
"";
53 $this->back_2_title =
"";
63 $this->setup_mode = $a_val;
81 $this->back_title = $a_title;
82 $this->back_target = $a_target;
83 $this->back_frame = $a_frame;
91 $this->back_2_title = $a_title;
92 $this->back_2_target = $a_target;
93 $this->back_2_frame = $a_frame;
103 $this->force_one_tab = $a_val;
143 $a_cmdClass = array();
145 $a_cmdClass = !is_array($a_cmdClass) ? array(strtolower($a_cmdClass)) : $a_cmdClass;
146 #$a_cmdClass = strtolower($a_cmdClass); 149 $this->manual_activation =
true;
151 $this->target[] = array(
"text" => $a_text,
"link" => $a_link,
152 "cmd" => $a_cmd,
"cmdClass" => $a_cmdClass,
"frame" => $a_frame,
153 "activate" => $a_activate,
"dir_text" => $a_dir_text,
"id" => $a_text);
164 public function addTab($a_id, $a_text, $a_link, $a_frame =
"")
166 $this->target[] = array(
"text" => $a_text,
"link" => $a_link,
167 "frame" => $a_frame,
"dir_text" =>
true,
"id" => $a_id,
"cmdClass" => array());
179 foreach ($this->target as $key =>
$target) {
181 unset($this->target[$key]);
198 if ($this->sub_target[
$i][
'id'] == $a_id) {
199 unset($this->sub_target[
$i]);
217 public function replaceTab($a_old_id, $a_new_id, $a_text, $a_link, $a_frame =
'')
219 for (
$i = 0;
$i < count($this->target);
$i++) {
220 if ($this->target[
$i][
'id'] == $a_old_id) {
221 $this->target[
$i] = array();
222 $this->target[
$i] = array(
228 "cmdClass" => array());
243 if (isset($DIC[
"ilHelp"])) {
244 $ilHelp = $DIC[
"ilHelp"];
248 $ilHelp->setScreenIdComponent(
"");
251 $this->target = array();
252 $this->sub_target = array();
253 $this->non_tabbed_link = array();
254 $this->back_title =
"";
255 $this->back_target =
"";
256 $this->back_2_target =
"";
257 $this->back_2_title =
"";
290 $a_cmdClass = array();
292 $a_cmdClass = !is_array($a_cmdClass) ? array(strtolower($a_cmdClass)) : $a_cmdClass;
293 #$a_cmdClass = strtolower($a_cmdClass); 296 $this->subtab_manual_activation =
true;
298 $this->sub_target[] = array(
"text" => $a_text,
"link" => $a_link,
299 "cmd" => $a_cmd,
"cmdClass" => $a_cmdClass,
"frame" => $a_frame,
300 "activate" => $a_activate,
"dir_text" => $a_dir_text,
"id" => $a_text);
311 public function addSubTab($a_id, $a_text, $a_link, $a_frame =
"")
313 $this->sub_target[] = array(
"text" => $a_text,
"link" => $a_link,
314 "frame" => $a_frame,
"dir_text" =>
true,
"id" => $a_id,
"cmdClass" => array());
330 foreach ($this->target as $key =>
$target) {
331 $this->target[$key][
'activate'] = $this->target[$key][
'id'] == $a_id;
334 $this->manual_activation =
true;
336 $this->manual_activation =
false;
364 for (
$i = 0;
$i < count($this->sub_target);
$i++) {
365 $this->sub_target[
$i][
'activate'] = $this->sub_target[
$i][
'id'] == $a_text;
367 $this->subtab_manual_activation =
true;
388 $this->sub_target = array();
398 public function getHTML($a_after_tabs_anchor =
false)
400 return $this->
__getHTML(
false, $a_after_tabs_anchor);
422 $this->non_tabbed_link[] = array(
"text" => $a_text,
"link" => $a_link,
423 "frame" => $a_frame,
"dir_text" =>
true,
"id" => $a_id,
"cmdClass" => array());
428 $this->non_tabbed_link = [];
438 private function __getHTML($a_get_sub_tabs, $a_after_tabs_anchor =
false)
443 if (isset($DIC[
"ilHelp"])) {
444 $ilHelp = $DIC[
"ilHelp"];
450 if (isset($DIC[
"ilUser"])) {
453 $ilPluginAdmin = null;
454 if (isset($DIC[
"ilPluginAdmin"])) {
455 $ilPluginAdmin = $DIC[
"ilPluginAdmin"];
460 $pl_names = $ilPluginAdmin->getActivePluginsForSlot(
IL_COMP_SERVICE,
"UIComponent",
"uihk");
461 foreach ($pl_names as $pl) {
463 $gui_class = $ui_plugin->getUIClassInstance();
464 $resp = $gui_class->modifyGUI(
466 $a_get_sub_tabs ?
"sub_tabs" :
"tabs",
467 array(
"tabs" => $this)
475 $cmd = $ilCtrl->getCmd();
476 $cmdClass = $ilCtrl->getCmdClass();
479 if ($a_get_sub_tabs) {
480 $tpl =
new ilTemplate(
"tpl.sub_tabs.html",
true,
true,
"Services/UIComponent/Tabs");
485 $tpl =
new ilTemplate(
"tpl.tabs.html",
true,
true,
"Services/UIComponent/Tabs");
486 if ($a_after_tabs_anchor) {
487 $tpl->touchBlock(
"after_tabs");
491 include_once(
"./Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php");
494 if ($this->back_2_title !=
"") {
495 $tpl->setCurrentBlock(
"back_2_tab");
498 $tpl->setVariable(
"BACK_2_TAB_TEXT", $this->back_2_title);
499 if ($this->back_2_frame !=
"") {
500 $tpl->setVariable(
"BACK_2_TAB_TARGET",
' target="' . $this->back_2_frame .
'" ');
503 $tpl->parseCurrentBlock();
507 if ($this->back_title !=
"") {
508 $tpl->setCurrentBlock(
"back_tab");
511 $tpl->setVariable(
"BACK_TAB_TEXT", $this->back_title);
512 if ($this->back_frame !=
"") {
513 $tpl->setVariable(
"BACK_TAB_TARGET",
' target="' . $this->back_frame .
'" ');
515 $tpl->parseCurrentBlock();
519 $targets = $a_get_sub_tabs ? $this->sub_target :
$this->target;
524 if ((count($targets) > 1 || $this->force_one_tab) || ($this->back_title !=
"" && !$a_get_sub_tabs)
525 || (count($this->non_tabbed_link) > 0 && !$a_get_sub_tabs)) {
526 foreach ($targets as
$target) {
529 if (!is_array($target[
"cmd"])) {
530 $target[
"cmd"] = array($target[
"cmd"]);
532 if (!($a_get_sub_tabs ? $this->subtab_manual_activation : $this->manual_activation) &&
533 (in_array($cmd, $target[
"cmd"]) || ($target[
"cmd"][0] ==
"" && count($target[
"cmd"]) == 1)) &&
534 (in_array($cmdClass, $target[
"cmdClass"]) || !$target[
"cmdClass"])) {
535 $tabtype = $pre .
"tabactive";
537 $tabtype = $pre .
"tabinactive";
540 if (($a_get_sub_tabs ? $this->subtab_manual_activation : $this->manual_activation) && $target[
"activate"]) {
541 $tabtype = $pre .
"tabactive";
544 if ($tabtype ==
"tabactive" || $tabtype ==
"subtabactive") {
545 $tpl->setCurrentBlock(
"sel_text");
546 $tpl->setVariable(
"TXT_SELECTED",
$lng->txt(
"stat_selected"));
547 $tpl->parseCurrentBlock();
550 if ($a_get_sub_tabs) {
555 $ilHelp->setDefaultScreenId($part, $target[
"id"]);
559 $tpl->setCurrentBlock($pre .
"tab");
560 $tpl->setVariable(
"ID", $pre .
"tab_" . $target[
"id"]);
564 $ttext = $ilHelp->getTabTooltipText($target[
"id"]);
566 include_once(
"./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
568 $pre .
"tab_" . $target[
"id"],
579 $tabtype = in_array($tabtype, array(
"tabactive",
"subtabactive"))
584 $tpl->setVariable($pre2 .
"TAB_TYPE", $tabtype);
586 $hash = (
$ilUser->getPref(
"screen_reader_optimization"))
587 ?
"#after_" . $sr_pre .
"tabs" 591 $tpl->setVariable($pre2 .
"TAB_LINK", $target[
"link"] . $hash);
592 if ($target[
"dir_text"]) {
593 $tpl->setVariable($pre2 .
"TAB_TEXT", $target[
"text"]);
595 $tpl->setVariable($pre2 .
"TAB_TEXT",
$lng->txt($target[
"text"]));
597 if ($target[
"frame"] !=
"") {
598 $tpl->setVariable($pre2 .
"TAB_TARGET",
' target="' . $target[
"frame"] .
'" ');
600 $tpl->parseCurrentBlock();
603 if ($a_get_sub_tabs) {
604 $tpl->setVariable(
"TXT_SUBTABS",
$lng->txt(
"subtabs"));
606 $tpl->setVariable(
"TXT_TABS",
$lng->txt(
"tabs"));
609 include_once(
"./Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php");
610 foreach ($this->non_tabbed_link as $link) {
611 $tpl->setCurrentBlock(
"tab");
612 $tpl->setVariable(
"TAB_TYPE",
"nontabbed");
614 $tpl->setVariable(
"TAB_TEXT", $link[
"text"]);
615 $tpl->setVariable(
"TAB_LINK", $link[
"link"]);
616 $tpl->setVariable(
"TAB_TARGET", $link[
"frame"]);
617 $tpl->setVariable(
"ID",
"nontab_" . $link[
"id"]);
618 $tpl->parseCurrentBlock();
622 $ttext = $ilHelp->getTabTooltipText($link[
"id"]);
624 include_once(
"./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
626 "nontab_" . $link[
"id"],
646 foreach ($this->target as
$i =>
$target) {
647 if ($this->target[
$i][
'activate']) {
648 return $this->target[
$i][
'id'];
getSetupMode()
Get setup mode.
addSubTabTarget( $a_text, $a_link, $a_cmd="", $a_cmdClass="", $a_frame="", $a_activate=false, $a_dir_text=false)
DEPRECATED.
setTabActive($a_id)
DEPRECATED.
activateSubTab($a_id)
Activate a specific subtab identified its id.
getSubTabHTML()
get sub tabs code as html
static get($a_glyph, $a_text="")
Get glyph html.
setBack2Target($a_title, $a_target, $a_frame="")
back target for tow level upper context
addTarget( $a_text, $a_link, $a_cmd="", $a_cmdClass="", $a_frame="", $a_activate=false, $a_dir_text=false)
setBackTarget($a_title, $a_target, $a_frame="")
back target for upper context
getForcePresentationOfSingleTab()
Get force presentation of single tab.
replaceTab($a_old_id, $a_new_id, $a_text, $a_link, $a_frame='')
Replace a tab.
static getPluginObject($a_ctype, $a_cname, $a_slot_id, $a_pname)
Get Plugin Object.
setForcePresentationOfSingleTab($a_val)
Set force presentation of single tab.
addSubTab($a_id, $a_text, $a_link, $a_frame="")
Add a Subtab.
clearSubTabs()
Clear all already added sub tabs.
clearTargets()
clear all targets
addNonTabbedLink($a_id, $a_text, $a_link, $a_frame="")
Add a non-tabbed link (outside of tabs at same level)
__construct()
Constructor public.
removeTab($a_id)
Remove a tab identified by its id.
activateTab($a_id)
Activate a specific tab identified its id.
static secureUrl($url)
Prepare secure href attribute.
removeSubTab($a_id)
Remove a tab identified by its id.
getHTML($a_after_tabs_anchor=false)
get tabs code as html
setSetupMode($a_val)
Set setup mode.
addTab($a_id, $a_text, $a_link, $a_frame="")
Add a Tab.
__getHTML($a_get_sub_tabs, $a_after_tabs_anchor=false)
get tabs code as html