ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilGlossaryLocatorGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
26 {
28  protected ?ilGlossaryTerm $term = null;
29  protected ilCtrl $ctrl;
31 
32  public string $mode;
33  public string $temp_var;
34  public ilTree $tree;
36  public ilLanguage $lng;
38 
39  public function __construct()
40  {
41  global $DIC;
42 
43  $this->ctrl = $DIC->ctrl();
44  $this->locator = $DIC["ilLocator"];
45  $lng = $DIC->language();
46  $tpl = $DIC["tpl"];
47  $tree = $DIC->repositoryTree();
48 
49  $this->mode = "edit";
50  $this->temp_var = "LOCATOR";
51  $this->lng = $lng;
52  $this->tpl = $tpl;
53  $this->tree = $tree;
54  $this->presentation_request = $DIC->glossary()
55  ->internal()
56  ->gui()
57  ->presentation()
58  ->request();
59  }
60 
61  public function setTemplateVariable(string $a_temp_var): void
62  {
63  $this->temp_var = $a_temp_var;
64  }
65 
66  public function setTerm(ilGlossaryTerm $a_term): void
67  {
68  $this->term = $a_term;
69  }
70 
71  public function setGlossary(ilObjGlossary $a_glossary): void
72  {
73  $this->glossary = $a_glossary;
74  }
75 
76  public function setMode(string $a_mode): void
77  {
78  $this->mode = $a_mode;
79  }
80 
84  public function display(): void
85  {
86  $ilCtrl = $this->ctrl;
87  $ilLocator = $this->locator;
88  $tpl = $this->tpl;
89 
90  // repository links
91  $ilLocator->addRepositoryItems();
92 
93  // glossary link
94  $title = $this->glossary->getTitle();
95  if ($this->mode == "edit") {
96  $link = $ilCtrl->getLinkTargetByClass("ilobjglossarygui", "listTerms");
97  } else {
98  $ilCtrl->setParameterByClass("ilglossarypresentationgui", "term_id", "");
99  $link = $ilCtrl->getLinkTargetByClass("ilglossarypresentationgui");
100  if (is_object($this->term)) {
101  $ilCtrl->setParameterByClass("ilglossarypresentationgui", "term_id", $this->term->getId());
102  }
103  }
104  $ilLocator->addItem($title, $link, "");
105 
106  if (is_object($this->term) && $this->mode != "edit") {
107  $ilCtrl->setParameterByClass("ilglossarypresentationgui", "term_id", $this->term->getId());
108  $ilLocator->addItem(
109  $this->term->getTerm(),
110  $ilCtrl->getLinkTargetByClass("ilglossarypresentationgui", "listDefinitions")
111  );
112  $ilCtrl->setParameterByClass(
113  "ilglossarypresentationgui",
114  "term_id",
115  $this->presentation_request->getTermId()
116  );
117  } elseif (is_object($this->term)) {
118  $title = $this->term->getTerm() . " (" . $this->lng->txt("cont_definition") . ")";
119  $link = $ilCtrl->getLinkTargetByClass("ilglossarydefpagegui", "edit");
120  $ilLocator->addItem($title, $link);
121  }
122 
123  $tpl->setLocator();
124  }
125 }
setGlossary(ilObjGlossary $a_glossary)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setLocator()
Insert locator.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
PresentationGUIRequest $presentation_request
ilGlobalTemplateInterface $tpl
global $DIC
Definition: shib_login.php:22
setTemplateVariable(string $a_temp_var)
setTerm(ilGlossaryTerm $a_term)