ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTabsGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
12 class ilTabsGUI
13 {
14 
18  protected $ctrl;
19 
21  public $obj_type;
22  public $tpl;
23  public $lng;
24  public $tabs;
25  public $target = array();
26  public $sub_target = array();
27  public $non_tabbed_link = array();
28  public $setup_mode = false;
29 
30  protected $force_one_tab = false;
31 
36  public function __construct()
37  {
38  global $DIC;
39 
40  $this->ctrl = $DIC->ctrl();
41  $tpl = $DIC["tpl"];
42  $lng = $DIC->language();
43 
44  $this->tpl = $tpl;
45  $this->lng = $lng;
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 = "";
54  }
55 
61  public function setSetupMode($a_val)
62  {
63  $this->setup_mode = $a_val;
64  }
65 
71  public function getSetupMode()
72  {
73  return $this->setup_mode;
74  }
75 
79  public function setBackTarget($a_title, $a_target, $a_frame = "")
80  {
81  $this->back_title = $a_title;
82  $this->back_target = $a_target;
83  $this->back_frame = $a_frame;
84  }
85 
89  public function setBack2Target($a_title, $a_target, $a_frame = "")
90  {
91  $this->back_2_title = $a_title;
92  $this->back_2_target = $a_target;
93  $this->back_2_frame = $a_frame;
94  }
95 
101  public function setForcePresentationOfSingleTab($a_val)
102  {
103  $this->force_one_tab = $a_val;
104  }
105 
112  {
113  return $this->force_one_tab;
114  }
115 
133  public function addTarget(
134  $a_text,
135  $a_link,
136  $a_cmd = "",
137  $a_cmdClass = "",
138  $a_frame = "",
139  $a_activate = false,
140  $a_dir_text = false
141  ) {
142  if (!$a_cmdClass) {
143  $a_cmdClass = array();
144  }
145  $a_cmdClass = !is_array($a_cmdClass) ? array(strtolower($a_cmdClass)) : $a_cmdClass;
146  #$a_cmdClass = strtolower($a_cmdClass);
147 
148  if ($a_activate) {
149  $this->manual_activation = true;
150  }
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);
154  }
155 
164  public function addTab($a_id, $a_text, $a_link, $a_frame = "")
165  {
166  $this->target[] = array("text" => $a_text, "link" => $a_link,
167  "frame" => $a_frame, "dir_text" => true, "id" => $a_id, "cmdClass" => array());
168  }
169 
177  public function removeTab($a_id)
178  {
179  foreach ($this->target as $key => $target) {
180  if ($target['id'] == $a_id) {
181  unset($this->target[$key]);
182  return true;
183  }
184  }
185  return false;
186  }
187 
195  public function removeSubTab($a_id)
196  {
197  foreach ($this->sub_target as $i => $sub_target) {
198  if ($this->sub_target[$i]['id'] == $a_id) {
199  unset($this->sub_target[$i]);
200  return true;
201  }
202  }
203  return false;
204  }
205 
217  public function replaceTab($a_old_id, $a_new_id, $a_text, $a_link, $a_frame = '')
218  {
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(
223  "text" => $a_text,
224  "link" => $a_link,
225  "frame" => $a_frame,
226  "dir_text" => true,
227  "id" => $a_new_id,
228  "cmdClass" => array());
229  return true;
230  }
231  }
232  return false;
233  }
234 
238  public function clearTargets()
239  {
240  global $DIC;
241 
242  $ilHelp = null;
243  if (isset($DIC["ilHelp"])) {
244  $ilHelp = $DIC["ilHelp"];
245  }
246 
247  if (!$this->getSetupMode()) {
248  $ilHelp->setScreenIdComponent("");
249  }
250 
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 = "";
258  $this->setTabActive("");
259  $this->setSubTabActive("");
260  }
261 
280  public function addSubTabTarget(
281  $a_text,
282  $a_link,
283  $a_cmd = "",
284  $a_cmdClass = "",
285  $a_frame = "",
286  $a_activate = false,
287  $a_dir_text = false
288  ) {
289  if (!$a_cmdClass) {
290  $a_cmdClass = array();
291  }
292  $a_cmdClass = !is_array($a_cmdClass) ? array(strtolower($a_cmdClass)) : $a_cmdClass;
293  #$a_cmdClass = strtolower($a_cmdClass);
294 
295  if ($a_activate) {
296  $this->subtab_manual_activation = true;
297  }
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);
301  }
302 
311  public function addSubTab($a_id, $a_text, $a_link, $a_frame = "")
312  {
313  $this->sub_target[] = array("text" => $a_text, "link" => $a_link,
314  "frame" => $a_frame, "dir_text" => true, "id" => $a_id, "cmdClass" => array());
315  }
316 
328  public function setTabActive($a_id)
329  {
330  foreach ($this->target as $key => $target) {
331  $this->target[$key]['activate'] = $this->target[$key]['id'] == $a_id;
332  }
333  if ($a_id != "") {
334  $this->manual_activation = true;
335  } else {
336  $this->manual_activation = false;
337  }
338  return true;
339  }
340 
346  public function activateTab($a_id)
347  {
348  $this->setTabActive($a_id);
349  }
350 
362  public function setSubTabActive($a_text)
363  {
364  for ($i = 0; $i < count($this->sub_target);$i++) {
365  $this->sub_target[$i]['activate'] = $this->sub_target[$i]['id'] == $a_text;
366  }
367  $this->subtab_manual_activation = true;
368  return true;
369  }
370 
376  public function activateSubTab($a_id)
377  {
378  $this->setSubTabActive($a_id);
379  }
380 
386  public function clearSubTabs()
387  {
388  $this->sub_target = array();
389  return true;
390  }
391 
398  public function getHTML($a_after_tabs_anchor = false)
399  {
400  return $this->__getHTML(false, $a_after_tabs_anchor);
401  }
402 
407  public function getSubTabHTML()
408  {
409  return $this->__getHTML(true);
410  }
411 
420  public function addNonTabbedLink($a_id, $a_text, $a_link, $a_frame = "")
421  {
422  $this->non_tabbed_link[] = array("text" => $a_text, "link" => $a_link,
423  "frame" => $a_frame, "dir_text" => true, "id" => $a_id, "cmdClass" => array());
424  }
425 
426  public function removeNonTabbedLinks()
427  {
428  $this->non_tabbed_link = [];
429  }
430 
438  private function __getHTML($a_get_sub_tabs, $a_after_tabs_anchor = false)
439  {
440  global $DIC;
441 
442  $ilHelp = null;
443  if (isset($DIC["ilHelp"])) {
444  $ilHelp = $DIC["ilHelp"];
445  }
446 
447  $ilCtrl = $this->ctrl;
448  $lng = $this->lng;
449  $ilUser = null;
450  if (isset($DIC["ilUser"])) {
451  $ilUser = $DIC->user();
452  }
453  $ilPluginAdmin = null;
454  if (isset($DIC["ilPluginAdmin"])) {
455  $ilPluginAdmin = $DIC["ilPluginAdmin"];
456  }
457 
458  // user interface hook [uihk]
459  if (!$this->getSetupMode()) {
460  $pl_names = $ilPluginAdmin->getActivePluginsForSlot(IL_COMP_SERVICE, "UIComponent", "uihk");
461  foreach ($pl_names as $pl) {
462  $ui_plugin = ilPluginAdmin::getPluginObject(IL_COMP_SERVICE, "UIComponent", "uihk", $pl);
463  $gui_class = $ui_plugin->getUIClassInstance();
464  $resp = $gui_class->modifyGUI(
465  "",
466  $a_get_sub_tabs ? "sub_tabs" : "tabs",
467  array("tabs" => $this)
468  );
469  }
470  }
471 
472 
473  // user interface hook [uihk]
474  if (!$this->getSetupMode()) {
475  $cmd = $ilCtrl->getCmd();
476  $cmdClass = $ilCtrl->getCmdClass();
477  }
478 
479  if ($a_get_sub_tabs) {
480  $tpl = new ilTemplate("tpl.sub_tabs.html", true, true, "Services/UIComponent/Tabs");
481  $pre = "sub";
482  $pre2 = "SUB_";
483  $sr_pre = "sub_";
484  } else {
485  $tpl = new ilTemplate("tpl.tabs.html", true, true, "Services/UIComponent/Tabs");
486  if ($a_after_tabs_anchor) {
487  $tpl->touchBlock("after_tabs");
488  }
489  $pre = $pre2 = "";
490 
491  include_once("./Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php");
492 
493  // back 2 tab
494  if ($this->back_2_title != "") {
495  $tpl->setCurrentBlock("back_2_tab");
496  $tpl->setVariable("BACK_2_ICON", ilGlyphGUI::get(ilGlyphGUI::PREVIOUS, ilGlyphGUI::NO_TEXT));
497  $tpl->setVariable("BACK_2_TAB_LINK", ilUtil::secureUrl($this->back_2_target));
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 . '" ');
501  }
502 
503  $tpl->parseCurrentBlock();
504  }
505 
506  // back tab
507  if ($this->back_title != "") {
508  $tpl->setCurrentBlock("back_tab");
509  $tpl->setVariable("BACK_ICON", ilGlyphGUI::get(ilGlyphGUI::PREVIOUS, ilGlyphGUI::NO_TEXT));
510  $tpl->setVariable("BACK_TAB_LINK", ilUtil::secureUrl($this->back_target));
511  $tpl->setVariable("BACK_TAB_TEXT", $this->back_title);
512  if ($this->back_frame != "") {
513  $tpl->setVariable("BACK_TAB_TARGET", ' target="' . $this->back_frame . '" ');
514  }
515  $tpl->parseCurrentBlock();
516  }
517  }
518 
519  $targets = $a_get_sub_tabs ? $this->sub_target : $this->target;
520 
521  $i = 0;
522 
523  // do not display one tab only
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) {
527  $i++;
528 
529  if (!is_array($target["cmd"])) {
530  $target["cmd"] = array($target["cmd"]);
531  }
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";
536  } else {
537  $tabtype = $pre . "tabinactive";
538  }
539 
540  if (($a_get_sub_tabs ? $this->subtab_manual_activation : $this->manual_activation) && $target["activate"]) {
541  $tabtype = $pre . "tabactive";
542  }
543 
544  if ($tabtype == "tabactive" || $tabtype == "subtabactive") {
545  $tpl->setCurrentBlock("sel_text");
546  $tpl->setVariable("TXT_SELECTED", $lng->txt("stat_selected"));
547  $tpl->parseCurrentBlock();
548 
549  if (!$this->getSetupMode()) {
550  if ($a_get_sub_tabs) {
552  } else {
554  }
555  $ilHelp->setDefaultScreenId($part, $target["id"]);
556  }
557  }
558 
559  $tpl->setCurrentBlock($pre . "tab");
560  $tpl->setVariable("ID", $pre . "tab_" . $target["id"]);
561 
562  // tooltip
563  if (!$this->getSetupMode()) {
564  $ttext = $ilHelp->getTabTooltipText($target["id"]);
565  if ($ttext != "") {
566  include_once("./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
568  $pre . "tab_" . $target["id"],
569  $ttext,
570  "",
571  "bottom center",
572  "top center",
573  false
574  );
575  }
576  }
577 
578  // bs-patch: start
579  $tabtype = in_array($tabtype, array("tabactive", "subtabactive"))
580  ? "active"
581  : "";
582  // bs-patch: end
583 
584  $tpl->setVariable($pre2 . "TAB_TYPE", $tabtype);
585  if (!$this->getSetupMode()) {
586  $hash = ($ilUser->getPref("screen_reader_optimization"))
587  ? "#after_" . $sr_pre . "tabs"
588  : "";
589  }
590 
591  $tpl->setVariable($pre2 . "TAB_LINK", $target["link"] . $hash);
592  if ($target["dir_text"]) {
593  $tpl->setVariable($pre2 . "TAB_TEXT", $target["text"]);
594  } else {
595  $tpl->setVariable($pre2 . "TAB_TEXT", $lng->txt($target["text"]));
596  }
597  if ($target["frame"] != "") {
598  $tpl->setVariable($pre2 . "TAB_TARGET", ' target="' . $target["frame"] . '" ');
599  }
600  $tpl->parseCurrentBlock();
601  }
602 
603  if ($a_get_sub_tabs) {
604  $tpl->setVariable("TXT_SUBTABS", $lng->txt("subtabs"));
605  } else {
606  $tpl->setVariable("TXT_TABS", $lng->txt("tabs"));
607 
608  // non tabbed links
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");
613  $tpl->setVariable("TAB_ICON", " " . ilGlyphGUI::get(ilGlyphGUI::NEXT, ilGlyphGUI::NO_TEXT));
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();
619 
620  // tooltip
621  if (!$this->getSetupMode()) {
622  $ttext = $ilHelp->getTabTooltipText($link["id"]);
623  if ($ttext != "") {
624  include_once("./Services/UIComponent/Tooltip/classes/class.ilTooltipGUI.php");
626  "nontab_" . $link["id"],
627  $ttext,
628  "",
629  "bottom center",
630  "top center",
631  false
632  );
633  }
634  }
635  }
636  }
637 
638  return $tpl->get();
639  } else {
640  return "";
641  }
642  }
643 
644  public function getActiveTab()
645  {
646  foreach ($this->target as $i => $target) {
647  if ($this->target[$i]['activate']) {
648  return $this->target[$i]['id'];
649  }
650  }
651  }
652 
653  public function hasTabs()
654  {
655  return (bool) sizeof($this->target);
656  }
657 }
getSetupMode()
Get setup mode.
static addTooltip( $a_el_id, $a_text, $a_container="", $a_my="bottom center", $a_at="top center", $a_use_htmlspecialchars=true)
Adds a tooltip to an HTML element.
addSubTabTarget( $a_text, $a_link, $a_cmd="", $a_cmdClass="", $a_frame="", $a_activate=false, $a_dir_text=false)
DEPRECATED.
setTabActive($a_id)
DEPRECATED.
Tabs GUI.
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)
const ID_PART_SUB_SCREEN
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.
setSubTabActive($a_text)
global $DIC
Definition: goto.php:24
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
$ilUser
Definition: imgupload.php:18
const ID_PART_SCREEN
const IL_COMP_SERVICE
$i
Definition: metadata.php:24