26 protected \ILIAS\Glossary\Editing\EditingGUIRequest
$request;
28 protected \ILIAS\components\ILIAS\Glossary\Table\TableManager
$table_manager;
49 $this->tpl = $DIC[
"tpl"];
50 $this->
ctrl = $DIC->ctrl();
51 $this->
lng = $DIC->language();
52 $this->
user = $DIC->user();
53 $this->ui_ren = $DIC->ui()->renderer();
55 $this->glossary_gui = $a_glossary_gui;
60 $this->term_manager = $DIC->glossary()
67 $this->table_manager = $DIC->glossary()
71 $this->request = $DIC->glossary()
76 $this->requested_table_glossary_foreign_term_action = $this->request->getTableGlossaryForeignTermAction();
77 $this->requested_table_glossary_foreign_term_ids = $this->request->getTableGlossaryForeignTermIds();
79 $this->fglo_ref_id = $this->request->getForeignGlossaryRefId();
81 $this->foreign_glossary =
new ilObjGlossary($this->fglo_ref_id,
true);
84 $this->
ctrl->saveParameter($this,
"fglo_ref_id");
89 return new self($a_glossary_gui);
94 $next_class = $this->
ctrl->getNextClass($this);
95 $cmd = $this->
ctrl->getCmd(
"showGlossarySelector");
97 switch ($next_class) {
99 if (in_array($cmd, array(
"showGlossarySelector",
"setForeignGlossary",
"showTerms",
"copyTerms",
"referenceTerms"))) {
107 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"glo_select_source_glo"));
110 "showGlossarySelector",
112 "setForeignGlossary",
115 $exp->setTypeWhiteList(array(
"root",
"cat",
"grp",
"crs",
"glo",
"fold"));
116 $exp->setClickableTypes(array(
"glo"));
117 if (!$exp->handleCommand()) {
118 $this->tpl->setContent($exp->getHTML());
127 $ref_id = $this->request->getForeignGlossaryRefId();
129 if (
$ref_id == $this->glossary->getRefId()) {
130 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
"glo_please_select_other_glo"),
true);
131 $ilCtrl->redirect($this,
"showGlossarySelector");
134 $ilCtrl->redirect($this,
"showTerms");
139 $table = $this->table_manager->getGlossaryForeignTermTable(
141 $this->foreign_glossary
144 $this->tpl->setContent($this->ui_ren->render($table));
149 if ($this->requested_table_glossary_foreign_term_action ===
"copyTerms" 150 && !empty($this->requested_table_glossary_foreign_term_ids)
151 && $this->requested_table_glossary_foreign_term_ids[0] ===
"ALL_OBJECTS" 153 foreach ($this->foreign_glossary->getTermList() as $term) {
154 $this->term_manager->copyTermFromOtherGlossary(
155 $this->foreign_glossary->getRefId(),
159 } elseif ($this->requested_table_glossary_foreign_term_action ===
"copyTerms") {
160 foreach ($this->requested_table_glossary_foreign_term_ids as $term_id) {
161 $this->term_manager->copyTermFromOtherGlossary(
162 $this->foreign_glossary->getRefId(),
167 if (empty($this->requested_table_glossary_foreign_term_ids)) {
168 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
169 $this->
ctrl->redirect($this,
"showTerms");
172 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
173 $this->
ctrl->returnToParent($this);
179 if ($this->requested_table_glossary_foreign_term_action ===
"referenceTerms" 180 && !empty($this->requested_table_glossary_foreign_term_ids)
181 && $this->requested_table_glossary_foreign_term_ids[0] ===
"ALL_OBJECTS" 183 foreach ($this->foreign_glossary->getTermList() as $term) {
184 $term_ids[] = (
int) $term[
"id"];
186 } elseif ($this->requested_table_glossary_foreign_term_action ===
"referenceTerms") {
187 $term_ids =
array_map(
"intval", $this->requested_table_glossary_foreign_term_ids);
189 if (empty($term_ids)) {
190 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
191 $this->
ctrl->redirect($this,
"showTerms");
194 $this->term_manager->referenceTermsFromOtherGlossary(
195 $this->foreign_glossary->getRefId(),
199 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
200 $this->
ctrl->returnToParent($this);
static getInstance(ilObjGlossaryGUI $a_glossary_gui)
array $requested_table_glossary_foreign_term_ids
GUI class for ilGlossary.
string $requested_table_glossary_foreign_term_action
ilObjGlossary $foreign_glossary
ILIAS Glossary Editing EditingGUIRequest $request
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS components ILIAS Glossary Table TableManager $table_manager
ilObjGlossaryGUI $glossary_gui
ILIAS Glossary Term TermManager $term_manager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS UI Renderer $ui_ren
__construct(Container $dic, ilPlugin $plugin)
ilGlobalTemplateInterface $tpl
static _lookupType(int $id, bool $reference=false)