ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjGlossaryGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
31 class ilObjGlossaryGUI extends ilObjectGUI implements \ILIAS\Taxonomy\Settings\ModifierGUIInterface
32 {
33  protected \ILIAS\GlobalScreen\Services $global_screen;
35  protected \ILIAS\Glossary\InternalDomainService $domain;
36  protected \ILIAS\Glossary\InternalGUIService $gui;
37  protected \ILIAS\DI\UIServices $ui;
38  protected \ILIAS\Taxonomy\Service $taxonomy;
41  protected int $tax_node = 0;
42  protected ilObjTaxonomy $tax;
43  protected $tax_id;
44  protected bool $in_administration = false;
45  protected \ILIAS\Glossary\Presentation\GUIService $gui_presentation_service;
47  protected \ILIAS\Glossary\Editing\EditingGUIRequest $edit_request;
50  protected int $term_id = 0;
51  protected ilTabsGUI $tabs;
52  protected ilSetting $setting;
53  protected ilHelpGUI $help;
55  protected ilLogger $log;
56  protected \ILIAS\Style\Content\GUIService $content_style_gui;
57  protected \ILIAS\Style\Content\Object\ObjectFacade $content_style_domain;
58  protected \ILIAS\UI\Factory $ui_fac;
59  protected \ILIAS\UI\Renderer $ui_ren;
60  protected array $modals_to_render = [];
66 
67  public function __construct(
68  $a_data,
69  int $a_id = 0,
70  bool $a_call_by_reference = true,
71  bool $a_prepare_output = true
72  ) {
73  global $DIC;
74 
75  $service = $DIC->glossary()->internal();
76  $this->gui = $gui = $service->gui();
77  $this->domain = $domain = $service->domain();
78 
79  $this->lng = $domain->lng();
80  $this->user = $domain->user();
81  $this->setting = $domain->settings();
82  $this->access = $domain->access();
83  $this->rbacsystem = $domain->rbac()->system();
84  $this->log = $domain->log();
85 
86  $this->ctrl = $gui->ctrl();
87  $this->toolbar = $gui->toolbar();
88  $this->tabs = $gui->tabs();
89  $this->help = $gui->help();
90  $this->ui = $gui->ui();
91  $this->ui_fac = $gui->ui()->factory();
92  $this->ui_ren = $gui->ui()->renderer();
93  $this->global_screen = $gui->globalScreen();
94  $this->gui_presentation_service = $gui->presentation();
95 
96  $this->edit_request = $gui->editing()->request();
97  $this->term_perm = ilGlossaryTermPermission::getInstance();
98  $this->requested_table_glossary_term_list_action = $this->edit_request->getTableGlossaryTermListAction();
99  $this->requested_table_glossary_term_list_ids = $this->edit_request->getTableGlossaryTermListIds();
100 
101  $this->ctrl->saveParameter($this, array("ref_id"));
102  $this->lng->loadLanguageModule("content");
103  $this->lng->loadLanguageModule("glo");
104 
105  $this->type = "glo";
106  parent::__construct($a_data, $a_id, $a_call_by_reference, false);
107 
108  // determine term id and check whether it is valid (belongs to
109  // current glossary)
110  if (($this->requested_table_glossary_term_list_action == "editTerm"
111  || $this->requested_table_glossary_term_list_action == "editDefinition")
112  && !empty($this->requested_table_glossary_term_list_ids)) {
113  $this->term_id = $this->requested_table_glossary_term_list_ids[0];
114  } else {
115  $this->term_id = $this->edit_request->getTermId();
116  }
117  $term_glo_id = ilGlossaryTerm::_lookGlossaryID($this->term_id);
118  if ($this->term_id > 0 && $term_glo_id != $this->object->getId()
120  $this->term_id = 0;
121  }
122  $this->ctrl->setParameterByClass("ilglossarytermgui", "term_id", $this->term_id);
123 
124  $this->tax_id = $this->object->getTaxonomyId();
125  if ($this->tax_id > 0) {
126  $this->ctrl->saveParameter($this, array("show_tax", "tax_node"));
127 
128  $this->tax = new ilObjTaxonomy($this->tax_id);
129  }
130  $tax_node = $this->edit_request->getTaxNode();
131  if ($tax_node > 1 && $this->tax->getTree()->readRootId() != $tax_node) {
132  $this->tax_node = $tax_node;
133  }
134 
135  if ($this->getGlossary()) {
136  $this->term_manager = $domain->term(
137  $this->getGlossary(),
138  $this->user->getId()
139  );
140  $this->tax_manager = $domain->taxonomy(
141  $this->getGlossary()
142  );
143  }
144 
145  $this->term_def_bulk_gui = $this->gui_presentation_service
146  ->TermDefinitionBulkCreationGUI($this->getGlossary());
147 
148  $this->in_administration =
149  (strtolower($this->edit_request->getBaseClass()) == "iladministrationgui");
150  $cs = $DIC->contentStyle();
151  $this->content_style_gui = $cs->gui();
152  if (is_object($this->object)) {
153  $this->content_style_domain = $cs->domain()->styleForRefId($this->object->getRefId());
154  $this->taxonomy = $DIC->taxonomy();
155  }
156  }
157 
158  public function executeCommand(): void
159  {
160  $cmd = $this->ctrl->getCmd();
161  $next_class = $this->ctrl->getNextClass($this);
162 
163  $this->log->debug("glossary term, next class " . $next_class . ", cmd: " . $cmd);
164 
165  switch ($next_class) {
166  case 'ilobjectmetadatagui':
167  $this->checkPermission("write");
168 
169  $this->getTemplate();
170  $this->setTabs();
171  $this->setLocator();
172  $this->addHeaderAction();
173 
174  $this->tabs_gui->activateTab('meta_data');
175  $md_gui = new ilObjectMetaDataGUI($this->object, 'term');
176  $this->ctrl->forwardCommand($md_gui);
177  break;
178 
179  case "ilglossarytermgui":
180  if (!$this->term_perm->checkPermission("edit_content", $this->term_id) &&
181  !$this->term_perm->checkPermission("write", $this->term_id)) {
182  throw new ilGlossaryException("No permission.");
183  }
184  $this->getTemplate();
185  $this->ctrl->setReturn($this, "listTerms");
186  $term_gui = new ilGlossaryTermGUI($this->term_id);
187  $term_gui->setGlossary($this->getGlossary());
188  $this->ctrl->forwardCommand($term_gui);
189  break;
190 
191  case "ilinfoscreengui":
192  $this->addHeaderAction();
193  $this->showInfoScreen();
194  $this->tabs->activateTab("info_short");
195  break;
196 
197  case "ilobjectcontentstylesettingsgui":
198  $this->checkPermission("write");
199  $this->prepareOutput();
200  $this->addHeaderAction();
201  $this->tabs_gui->activateTab("settings");
202  $this->setSettingsSubTabs("style");
203  $settings_gui = $this->content_style_gui
204  ->objectSettingsGUIForRefId(
205  null,
206  $this->object->getRefId()
207  );
208  $this->ctrl->forwardCommand($settings_gui);
209  break;
210 
211 
212  case 'ilpermissiongui':
213  if ($this->in_administration) {
214  $this->prepareOutput();
215  } else {
216  $this->getTemplate();
217  $this->setTabs();
218  $this->setLocator();
219  $this->addHeaderAction();
220  }
221  $perm_gui = new ilPermissionGUI($this);
222  $ret = $this->ctrl->forwardCommand($perm_gui);
223  break;
224 
225  case "ilcommonactiondispatchergui":
227  $this->prepareOutput();
228  $this->ctrl->forwardCommand($gui);
229  break;
230 
231  case strtolower(ilTaxonomySettingsGUI::class):
232  $this->getTemplate();
233  $this->setTabs();
234  $this->setLocator();
235  $this->addHeaderAction();
236  $this->tabs->activateTab("settings");
237  $this->setSettingsSubTabs("taxonomy");
238 
239  $this->ctrl->setReturn($this, "properties");
240  $tax_gui = $this->taxonomy->gui()->getSettingsGUI(
241  $this->object->getId(),
242  $this->lng->txt("glo_tax_info"),
243  false,
244  $this
245  );
246  $ret = $this->ctrl->forwardCommand($tax_gui);
247  break;
248 
249  case "ilexportgui":
250  $this->getTemplate();
251  $this->setTabs();
252  $this->tabs->activateTab("export");
253  $this->setLocator();
254  $exp_gui = new ilExportGUI($this);
255  $ret = $this->ctrl->forwardCommand($exp_gui);
256  break;
257 
258  case 'ilobjectcopygui':
259  $this->prepareOutput();
260  $cp = new ilObjectCopyGUI($this);
261  $cp->setType('glo');
262  $this->ctrl->forwardCommand($cp);
263  break;
264 
265  case "ilglossaryforeigntermcollectorgui":
266  $this->ctrl->setReturn($this, "");
267  $this->getTemplate();
268  $this->setTabs();
269  $this->setLocator();
270  $this->addHeaderAction();
272  $this->ctrl->forwardCommand($coll);
273  break;
274 
275  case "iltermdefinitionbulkcreationgui":
276  $this->ctrl->setReturn($this, "listTerms");
277  $this->ctrl->forwardCommand($this->term_def_bulk_gui);
278  break;
279 
280  case strtolower(SettingsGUI::class):
281  $this->getTemplate();
282  $this->setTabs();
283  $this->tabs->activateTab("settings");
284  $this->setLocator();
285  $this->setSettingsSubTabs("general_settings");
286  $this->checkPermission("write");
287  $gui = $this->gui->settings()->settingsGUI(
288  $this->object->getId(),
290  $this->getCreationMode(),
291  $this,
293  );
294  $this->ctrl->forwardCommand($gui);
295  break;
296 
297  default:
298  $cmd = $this->ctrl->getCmd("listTerms");
299 
300  if (($cmd == "create") && ($this->edit_request->getNewType() == "term")) {
301  $this->ctrl->redirectByClass(ilGlossaryTermGUI::class, "create");
302  } else {
303  if ($this->in_administration ||
304  $this->getCreationMode()) {
305  $this->prepareOutput();
306  $cmd .= "Object";
307  } else {
308  $this->getTemplate();
309  $this->setTabs();
310  $this->setLocator();
311  $this->addHeaderAction();
312 
313  if ($cmd == "redrawHeaderAction") {
314  $cmd = "redrawHeaderActionObject";
315  }
316  }
317  $this->$cmd();
318  }
319  break;
320  }
321 
322  if (!$this->in_administration && !$this->getCreationMode()) {
323  $this->tpl->printToStdout();
324  }
325  }
326 
330  public function getGlossary(): ?ilObjGlossary
331  {
333  $glossary = $this->object;
334  if (isset($glossary) && $glossary->getType() == "glo") {
335  return $glossary;
336  }
337  return null;
338  }
339 
340  protected function assignObject(): void
341  {
342  $this->object = new ilObjGlossary($this->id, true);
343  }
344 
345  protected function initCreateForm(string $new_type): ilPropertyFormGUI
346  {
347  $form = new ilPropertyFormGUI();
348  $form->setTarget("_top");
349  $form->setFormAction($this->ctrl->getFormAction($this));
350  $form->setTitle($this->lng->txt($new_type . "_new"));
351 
352  // title
353  $ti = new ilTextInputGUI($this->lng->txt("title"), "title");
354  $ti->setSize(min(40, ilObject::TITLE_LENGTH));
355  $ti->setMaxLength(ilObject::TITLE_LENGTH);
356  $ti->setRequired(true);
357  $form->addItem($ti);
358 
359  // description
360  $ta = new ilTextAreaInputGUI($this->lng->txt("description"), "desc");
361  $ta->setCols(40);
362  $ta->setRows(2);
363  $form->addItem($ta);
364 
365  // didactic template
366  $form = $this->initDidacticTemplate($form);
367 
368  $form->addCommandButton("save", $this->lng->txt($new_type . "_add"));
369  $form->addCommandButton("cancel", $this->lng->txt("cancel"));
370 
371  return $form;
372  }
373 
374  public function importObject(): void
375  {
376  $this->createObject();
377  }
378 
379  public function saveObject(): void
380  {
381  $new_type = $this->edit_request->getNewType();
382 
383  // create permission is already checked in createObject. This check here is done to prevent hacking attempts
384  if (!$this->checkPermissionBool("create", "", $new_type)) {
385  throw new ilPermissionException($this->lng->txt("no_create_permission"));
386  }
387 
388  $this->lng->loadLanguageModule($new_type);
389  $this->ctrl->setParameter($this, "new_type", $new_type);
390 
391  $form = $this->initCreateForm($new_type);
392  if ($form->checkInput()) {
393  $this->ctrl->setParameter($this, "new_type", "");
394 
395  $newObj = new ilObjGlossary();
396  $newObj->setType($new_type);
397  $newObj->setTitle($form->getInput("title"));
398  $newObj->setDescription($form->getInput("desc"));
399  $newObj->setVirtualMode("none");
400  $newObj->create();
401 
402  $this->putObjectInTree($newObj);
403 
404  // apply didactic template?
405  $dtpl = $this->getDidacticTemplateVar("dtpl");
406  if ($dtpl) {
407  $newObj->applyDidacticTemplate($dtpl);
408  }
409 
410  // always send a message
411  $this->tpl->setOnScreenMessage('success', $this->lng->txt("glo_added"), true);
412  $this->ctrl->setParameterByClass(
413  ilObjGlossaryGUI::class,
414  "ref_id",
415  $newObj->getRefId()
416  );
417  $this->ctrl->redirectByClass(
418  [ilGlossaryEditorGUI::class, ilObjGlossaryGUI::class],
419  "properties"
420  );
421  }
422 
423  // display only this form to correct input
424  $form->setValuesByPost();
425  $this->tpl->setContent($form->getHTML());
426  }
427 
428  public function showInfoScreen(): void
429  {
430  $this->getTemplate();
431  $this->setTabs();
432  $this->setLocator();
433  $this->lng->loadLanguageModule("meta");
434 
435  $info = new ilInfoScreenGUI($this);
436  $info->enablePrivateNotes();
437  $info->enableNews();
438  if ($this->access->checkAccess("write", "", $this->requested_ref_id)) {
439  $info->enableNewsEditing();
440  $news_set = new ilSetting("news");
441  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
442  if ($enable_internal_rss) {
443  $info->setBlockProperty("news", "settings", true);
444  }
445  }
446  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
447 
448  self::addUsagesToInfo($info, $this->object->getId());
449 
450  $this->ctrl->forwardCommand($info);
451  }
452 
456  public static function addUsagesToInfo(
457  ilInfoScreenGUI $info,
458  int $glo_id
459  ): void {
460  global $DIC;
461 
462  $lng = $DIC->language();
463  $ilAccess = $DIC->access();
464 
465  $info->addSection($lng->txt("glo_usages"));
467  foreach ($sms as $sm) {
468  $link = false;
469  $refs = ilObject::_getAllReferences($sm);
470  foreach ($refs as $ref) {
471  if ($link === false && $ilAccess->checkAccess("write", "", $ref)) {
472  $link = ilLink::_getLink($ref, 'sahs');
473  }
474  }
475 
476  $entry = ilObject::_lookupTitle($sm);
477  if ($link !== false) {
478  $entry = "<a href='" . $link . "' target='_top'>" . $entry . "</a>";
479  }
480 
481  $info->addProperty($lng->txt("obj_sahs"), $entry);
482  }
483  }
484 
485 
486  public function viewObject(): void
487  {
488  if ($this->in_administration) {
489  parent::viewObject();
490  return;
491  }
492 
493  if (!$this->rbacsystem->checkAccess("visible,read", $this->object->getRefId())) {
494  throw new ilPermissionException($this->lng->txt("permission_denied"));
495  }
496  }
497 
498  public function properties(): void
499  {
500  $this->ctrl->redirectByClass(SettingsGUI::class);
501  }
502 
503  public function initSettingsForm(// todo: remove this and all related methods
504  string $a_mode = "edit"
505  ): void {
506  $obj_service = $this->getObjectService();
507 
508  $this->form = new ilPropertyFormGUI();
509 
510  // title
511  $title = new ilTextInputGUI($this->lng->txt("title"), "title");
512  $title->setRequired(true);
513  $this->form->addItem($title);
514 
515  // description
516  $desc = new ilTextAreaInputGUI($this->lng->txt("desc"), "description");
517  $this->form->addItem($desc);
518 
519  // glossary mode
520  // for layout of this property see https://mantis.ilias.de/view.php?id=31833
521  $glo_mode = new ilRadioGroupInputGUI($this->lng->txt("glo_content_assembly"), "glo_mode");
522  //$glo_mode->setInfo($this->lng->txt("glo_mode_desc"));
523  $op1 = new ilRadioOption($this->lng->txt("glo_mode_normal"), "none", $this->lng->txt("glo_mode_normal_info"));
524  $op2 = new ilRadioOption($this->lng->txt("glo_collection"), "coll", $this->lng->txt("glo_collection_info"));
525  if (!empty($this->object->getGlossariesForCollection()) && $this->object->isVirtual()) {
526  $op1->setDisabled(true);
527  $op2->setDisabled(true);
528  $glo_mode->setInfo($this->lng->txt("glo_change_to_standard_unavailable_info"));
529  }
530  if (!empty(ilGlossaryTerm::getTermsOfGlossary($this->object->getId())) && !$this->object->isVirtual()) {
531  $op1->setDisabled(true);
532  $op2->setDisabled(true);
533  $glo_mode->setInfo($this->lng->txt("glo_change_to_collection_unavailable_info"));
534  }
535  $glo_mode->addOption($op1);
536  $glo_mode->addOption($op2);
537  $this->form->addItem($glo_mode);
538 
539 
540  $this->lng->loadLanguageModule("rep");
541  $section = new ilFormSectionHeaderGUI();
542  $section->setTitle($this->lng->txt('rep_activation_availability'));
543  $this->form->addItem($section);
544 
545  // online
546  $online = new ilCheckboxInputGUI($this->lng->txt("cont_online"), "cobj_online");
547  $online->setValue("y");
548  $online->setInfo($this->lng->txt("glo_online_info"));
549  $this->form->addItem($online);
550 
551  $section = new ilFormSectionHeaderGUI();
552  $section->setTitle($this->lng->txt('cont_presentation'));
553  $this->form->addItem($section);
554 
555  // tile image
556  $obj_service->commonSettings()->legacyForm($this->form, $this->object)->addTileImage();
557 
558  // presentation mode
559  $pres_mode = new ilRadioGroupInputGUI($this->lng->txt("glo_presentation_mode"), "pres_mode");
560  $pres_mode->setValue("table");
561  $op1 = new ilRadioOption($this->lng->txt("glo_table_form"), "table", $this->lng->txt("glo_table_form_info"));
562 
563  // short text length
564  $snl = new ilNumberInputGUI($this->lng->txt("glo_text_snippet_length"), "snippet_length");
565  $snl->setMaxValue(3000);
566  $snl->setMinValue(100);
567  $snl->setMaxLength(4);
568  $snl->setSize(4);
569  $snl->setInfo($this->lng->txt("glo_text_snippet_length_info"));
570  $snl->setValue(200);
571  $snl->setSuffix($this->lng->txt("characters"));
572  $op1->addSubItem($snl);
573 
574  $pres_mode->addOption($op1);
575  $op2 = new ilRadioOption($this->lng->txt("glo_full_definitions"), "full_def", $this->lng->txt("glo_full_definitions_info"));
576  $pres_mode->addOption($op2);
577  $this->form->addItem($pres_mode);
578 
579  // flashcard training
580  $flash_active = new ilCheckboxInputGUI($this->lng->txt("glo_flashcard_training"), "flash_active");
581  $flash_active->setValue("y");
582  $flash_active->setInfo($this->lng->txt("glo_flashcard_training_info"));
583 
584  //flashcard training mode
585  $flash_mode = new ilRadioGroupInputGUI($this->lng->txt("glo_mode"), "flash_mode");
586  $op1 = new ilRadioOption($this->lng->txt("glo_term_vs_def"), "term", $this->lng->txt("glo_term_vs_def_info"));
587  $flash_mode->addOption($op1);
588  $op2 = new ilRadioOption($this->lng->txt("glo_def_vs_term"), "def", $this->lng->txt("glo_def_vs_term_info"));
589  $flash_mode->addOption($op2);
590  $flash_active->addSubItem($flash_mode);
591  $this->form->addItem($flash_active);
592 
593  // show taxonomy
594  $show_tax = null;
595  $tax_ids = ilObjTaxonomy::getUsageOfObject($this->object->getId());
596  if (count($tax_ids) > 0) {
597  $show_tax = new ilCheckboxInputGUI($this->lng->txt("glo_show_taxonomy"), "show_tax");
598  $show_tax->setInfo($this->lng->txt("glo_show_taxonomy_info"));
599  $this->form->addItem($show_tax);
600  }
601 
602  // downloads
603  $down = new ilCheckboxInputGUI($this->lng->txt("cont_downloads"), "glo_act_downloads");
604  $down->setValue("y");
605  $down->setInfo($this->lng->txt("cont_downloads_desc"));
606  $this->form->addItem($down);
607 
608  if ($a_mode == "edit") {
609  $title->setValue($this->object->getTitle());
610  $desc->setValue($this->object->getDescription());
611  $online->setChecked($this->object->getOnline());
612  $mode1 = $this->object->getVirtualMode() === "none"
613  ? "none"
614  : "coll";
615  $glo_mode->setValue($mode1);
616  $pres_mode->setValue($this->object->getPresentationMode());
617  $snl->setValue($this->object->getSnippetLength());
618 
619  $down->setChecked($this->object->isActiveDownloads());
620  $flash_active->setChecked($this->object->isActiveFlashcards());
621  $flash_mode->setValue($this->object->getFlashcardsMode());
622 
623  // additional features
624  $feat = new ilFormSectionHeaderGUI();
625  $feat->setTitle($this->lng->txt('obj_features'));
626  $this->form->addItem($feat);
627 
629  $this->object->getId(),
630  $this->form,
631  array(
634  )
635  );
636  }
637 
638  // sort columns, if adv fields are given
639  $adv_ap = new ilGlossaryAdvMetaDataAdapter($this->object->getRefId());
640  $cols = $adv_ap->getColumnOrder();
641  if (count($cols) > 1) {
642  $ti = new ilGloAdvColSortInputGUI($this->lng->txt("cont_col_ordering"), "field_order");
643  $this->form->addItem($ti);
644  $ti->setValue($cols);
645  $ti->setInfo($this->lng->txt("glo_col_ordering_info"));
646  }
647 
648  // save and cancel commands
649  $this->form->addCommandButton("saveProperties", $this->lng->txt("save"));
650 
651  $this->form->setTitle($this->lng->txt("cont_glo_properties"));
652  $this->form->setFormAction($this->ctrl->getFormAction($this));
653  }
654 
655 
656  public function saveProperties(): void
657  {
658  $obj_service = $this->getObjectService();
659 
660  $this->initSettingsForm();
661  if ($this->form->checkInput()) {
662  $this->object->setTitle($this->form->getInput("title"));
663  $this->object->setDescription($this->form->getInput("description"));
664  $this->object->setOnline(ilUtil::yn2tf($this->form->getInput("cobj_online")));
665  $glo_mode = $this->form->getInput("glo_mode") ?: $this->object->getVirtualMode();
666  $this->object->setVirtualMode($glo_mode);
667  $this->object->setActiveDownloads(ilUtil::yn2tf($this->form->getInput("glo_act_downloads")));
668  $this->object->setPresentationMode($this->form->getInput("pres_mode"));
669  $this->object->setSnippetLength($this->form->getInput("snippet_length"));
670  $this->object->setActiveFlashcards(ilUtil::yn2tf($this->form->getInput("flash_active")));
671  $this->object->setFlashcardsMode($this->form->getInput("flash_mode"));
672  $this->object->update();
673 
674  // tile image
675  $obj_service->commonSettings()->legacyForm($this->form, $this->object)->saveTileImage();
676 
677  // field order of advanced metadata
678  $adv_ap = new ilGlossaryAdvMetaDataAdapter($this->object->getRefId());
679  $cols = $adv_ap->getColumnOrder();
680  if (count($cols) > 1) {
681  $adv_ap->saveColumnOrder($this->form->getInput("field_order"));
682  }
683 
684  // set definition short texts dirty
686 
688  $this->object->getId(),
689  $this->form,
690  array(
693  )
694  );
695 
696  // Update ecs export settings
697  $ecs = new ilECSGlossarySettings($this->object);
698  if ($ecs->handleSettingsUpdate($this->form)) {
699  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
700  $this->ctrl->redirect($this, "properties");
701  }
702  }
703  $this->form->setValuesByPost();
704  $this->tpl->setContent($this->form->getHTML());
705  }
706 
707  public function getProperties(
708  int $tax_id
709  ): array {
710  $active = $this->object->getShowTaxonomy();
711  $value = $active
712  ? $this->lng->txt("yes")
713  : $this->lng->txt("no");
714 
715  return [
716  $this->lng->txt("glo_show_in_presentation") => $value
717  ];
718  }
719 
720  public function getActions(
721  int $tax_id
722  ): array {
723  $actions = [];
724  $this->ctrl->setParameterByClass(self::class, "glo_tax_id", $tax_id);
725  $active = $this->object->getShowTaxonomy();
726  if (!$active) {
727  $actions[] = $this->ui->factory()->button()->shy(
728  $this->lng->txt("glo_show_in_presentation_on"),
729  $this->ctrl->getLinkTargetByClass(
730  self::class,
731  "showTaxInPresentation"
732  )
733  );
734  } else {
735  $actions[] = $this->ui->factory()->button()->shy(
736  $this->lng->txt("glo_show_in_presentation_off"),
737  $this->ctrl->getLinkTargetByClass(
738  self::class,
739  "hideTaxInPresentation"
740  )
741  );
742  }
743  $this->ctrl->setParameterByClass(self::class, "glo_tax_id", null);
744 
745  return $actions;
746  }
747 
748  protected function showTaxInPresentation(): void
749  {
750  $this->object->setShowTaxonomy(true);
751  $this->object->update();
752  $this->ctrl->redirectByClass(ilTaxonomySettingsGUI::class);
753  }
754 
755  protected function hideTaxInPresentation(): void
756  {
757  $this->object->setShowTaxonomy(false);
758  $this->object->update();
759  $this->ctrl->redirectByClass(ilTaxonomySettingsGUI::class);
760  }
761 
762  public function listTerms(): void
763  {
764  $this->tabs->activateTab("content");
765 
766  $this->showTaxonomy();
767 
768  $panel_html = "";
769  $modals = "";
770  $tab_html = "";
771  if ($this->object->isVirtual()) {
772  $this->showToolbarForCollection();
773  $panel = $this->showSelectedGlossariesForCollection();
774  $panel_html = $this->ui_ren->render($panel);
775  $modals = $this->ui_ren->render($this->getModalsToRender());
776  } else {
777  $this->showToolbarForStandard();
778  $table = $this->domain->table()->getTermListTable($this->getGlossary(), $this->tax_node)->getComponent();
779  $tab_html = $this->ui_ren->render($table);
780  }
781 
782  $this->tabs->activateTab("content");
783 
784  $this->tpl->setContent($panel_html . $modals . $tab_html);
785  }
786 
790  protected function getModalsToRender(): array
791  {
793  }
794 
795  public function showToolbarForStandard(): void
796  {
797  // term
798  $ti = new ilTextInputGUI($this->lng->txt("cont_new_term"), "new_term");
799  $ti->setMaxLength(80);
800  $ti->setSize(20);
801  $this->toolbar->addInputItem($ti, true);
802 
803  // language
804  $this->lng->loadLanguageModule("meta");
805  $lang = $this->domain->metadata()->getLOMLanguagesForSelectInputs();
806  $session_lang = $this->term_manager->getSessionLang();
807  if ($session_lang != "") {
808  $s_lang = $session_lang;
809  } else {
810  $s_lang = $this->user->getLanguage();
811  }
812  $si = new ilSelectInputGUI($this->lng->txt("language"), "term_language");
813  $si->setOptions($lang);
814  $si->setValue($s_lang);
815  $this->toolbar->addInputItem($si, true);
816 
817  $this->toolbar->setFormAction($this->ctrl->getFormAction($this));
818  $this->toolbar->addFormButton($this->lng->txt("glo_add_new_term"), "addTerm");
819 
820  $this->toolbar->addSeparator();
821 
822  //ilEditClipboard::getAction() == "copy"
823  if ($this->user->clipboardHasObjectsOfType("term")) {
824  $this->toolbar->addButton(
825  $this->lng->txt("paste"),
826  $this->ctrl->getLinkTarget($this, "pasteTerms")
827  );
828  $this->toolbar->addButton(
829  $this->lng->txt("clear_clipboard"),
830  $this->ctrl->getLinkTarget($this, "clearClipboard")
831  );
832  } else {
833  $this->toolbar->addButton(
834  $this->lng->txt("glo_add_from_other"),
835  $this->ctrl->getLinkTargetByClass("ilglossaryforeigntermcollectorgui", "")
836  );
837  }
838 
839  $this->term_def_bulk_gui->modifyToolbar($this->toolbar);
840  }
841 
842  public function showToolbarForCollection(): void
843  {
844  $modal = $this->showModalForCollection();
845  $button = $this->ui_fac->button()->standard($this->lng->txt("glo_add_glossary"), "")->withOnClick($modal->getShowSignal());
846  $this->modals_to_render[] = $modal;
847  $this->toolbar->addComponent($button);
848  }
849 
853  public function showSelectedGlossariesForCollection(): array
854  {
855  $items = [];
856  $glo_ids = $this->object->getAllGlossaryIds(true);
857  $at_least_one_glossary = false;
858  foreach ($glo_ids as $glo_id) {
859  if ($this->object->getId() === $glo_id) {
860  continue;
861  }
862  $glossary = new ilObjGlossary($glo_id, false);
863  $glo_ref_id = current(ilObject::_getAllReferences($glossary->getId()));
864  $glo_link = $this->ui_fac->link()->standard($glossary->getTitle(), ilLink::_getLink($glo_ref_id));
865  $glo_item = $this->ui_fac->item()->standard($glo_link);
866  $glo_item = $glo_item->withDescription($glossary->getDescription());
867  $form_action = $this->ctrl->getFormActionByClass(ilObjGlossaryGUI::class, "removeGlossaryFromCollection");
868  $delete_modal = $this->ui_fac->modal()->interruptive(
869  "",
870  $this->lng->txt("glo_really_remove_from_collection"),
872  )->withAffectedItems([
873  $this->ui_fac->modal()->interruptiveItem()->standard(
874  $glossary->getId(),
875  $glossary->getTitle(),
876  $this->ui_fac->image()->standard(
877  ilObject::_getIcon($glossary->getId(), "small", $glossary->getType()),
878  $this->lng->txt("icon") . " " . $this->lng->txt("obj_" . $glossary->getType())
879  )
880  )
881  ]);
882  $actions = $this->ui_fac->dropdown()->standard([
883  $this->ui_fac->button()->shy($this->lng->txt("remove"), "")->withOnClick($delete_modal->getShowSignal()),
884  ]);
885  $glo_item = $glo_item->withActions($actions);
886 
887  $items[] = $glo_item;
888  $this->modals_to_render[] = $delete_modal;
889  $at_least_one_glossary = true;
890  }
891 
892  $components = [];
893  if (!$at_least_one_glossary) {
894  $message_box = $this->ui_fac->messageBox()->info($this->lng->txt("glo_collection_empty_info"));
895  $components[] = $message_box;
896  }
897  if (!empty($items)) {
898  $item_group = $this->ui_fac->item()->group($this->lng->txt("glo_selected_glossaries_info"), $items);
899  $panel = $this->ui_fac->panel()->listing()->standard(
900  $this->lng->txt("glo_selected_glossaries"),
901  [$item_group]
902  );
903  $components[] = $panel;
904  }
905 
906  return $components;
907  }
908 
909  public function showModalForCollection(): ILIAS\UI\Component\Modal\RoundTrip
910  {
912  $this,
913  "showModalForCollection",
914  $this,
915  "saveGlossaryForCollection",
916  "sel_glo_ref_id"
917  );
918  $modal = $this->ui_fac->modal()->roundtrip(
919  $this->lng->txt("glo_add_to_collection"),
920  $this->ui_fac->legacy()->content(!$exp->handleCommand() ? $exp->getHTML(true) : "")
921  );
922 
923  return $modal;
924  }
925 
926  public function saveGlossaryForCollection(): void
927  {
928  $selected_glo = new ilObjGlossary($this->edit_request->getSelectedGlossaryRefId(), true);
929  if ($selected_glo->getId() === $this->object->getId()) {
930  $this->tpl->setOnScreenMessage("info", $this->lng->txt("glo_selected_glossary_is_current_info"), true);
931  } else {
932  $this->object->addGlossaryForCollection($selected_glo->getId());
933  $this->tpl->setOnScreenMessage("success", $this->lng->txt("glo_added_to_collection_info"), true);
934  }
935  $this->ctrl->redirect($this, "listTerms");
936  }
937 
938  public function removeGlossaryFromCollection(): void
939  {
940  $glo_id = $this->edit_request->getGlossaryIdInModal();
941  $this->object->removeGlossaryFromCollection($glo_id);
942  $this->tpl->setOnScreenMessage("success", $this->lng->txt("glo_removed_from_collection_info"), true);
943  $this->ctrl->redirect($this, "listTerms");
944  }
945 
946  public function actTaxonomy(): void
947  {
948  $this->ctrl->setParameter($this, "show_tax", 1);
949  $this->ctrl->redirect($this, "listTerms");
950  }
951 
955  public function deactTaxonomy(): void
956  {
957  $this->ctrl->setParameter($this, "show_tax", "");
958  $this->ctrl->redirect($this, "listTerms");
959  }
960 
961 
965  public function addTerm(): void
966  {
967  $new_term = $this->edit_request->getNewTerm();
968  if ($new_term == "") {
969  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("cont_please_enter_a_term"), true);
970  $this->ctrl->redirect($this, "listTerms");
971  }
972 
973  // add term
974  $lang = $this->edit_request->getTermLanguage();
975  $term = new ilGlossaryTerm();
976  $term->setGlossary($this->getGlossary());
977  $term->setTerm($new_term);
978  $term->setLanguage($lang);
979  $term->create();
980 
981  $this->term_manager->setSessionLang($lang);
982 
983  $this->ctrl->setParameterByClass("ilglossarydefpagegui", "term_id", $term->getId());
984  $this->ctrl->redirectByClass(array("ilglossarytermgui",
985  "iltermdefinitioneditorgui", "ilglossarydefpagegui"), "edit");
986  }
987 
991  public function exportHTML(): void
992  {
993  $glo_exp = new ilGlossaryExport($this->getGlossary(), "html");
994  $glo_exp->buildExportFileHTML();
995  $this->ctrl->redirectByClass("ilexportgui", "");
996  }
997 
1001  public function publishExportFile(): void
1002  {
1003  $files = $this->edit_request->getFiles();
1004  if (count($files) == 0) {
1005  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("no_checkbox"), true);
1006  $this->ctrl->redirectByClass("ilexportgui", "");
1007  }
1008  if (count($files) > 1) {
1009  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("cont_select_max_one_item"), true);
1010  $this->ctrl->redirectByClass("ilexportgui", "");
1011  }
1012 
1013  $file = explode(":", $files[0]);
1014  $export_dir = $this->object->getExportDirectory($file[0]);
1015 
1016  if ($this->object->getPublicExportFile($file[0]) ==
1017  $file[1]) {
1018  $this->object->setPublicExportFile($file[0], "");
1019  } else {
1020  $this->object->setPublicExportFile($file[0], $file[1]);
1021  }
1022  $this->object->update();
1023  $this->ctrl->redirectByClass("ilexportgui", "");
1024  }
1025 
1026  public function deleteTerms(): void
1027  {
1028  if (!empty($this->edit_request->getTermIdsInModal())
1029  && $ids = $this->edit_request->getTermIdsInModal()) {
1030  foreach ($ids as $id) {
1031  if (ilGlossaryTermReferences::isReferenced([$this->object->getId()], $id)) {
1032  $refs = new ilGlossaryTermReferences($this->object->getId());
1033  $refs->deleteTerm($id);
1034  $refs->update();
1035  } else {
1036  $term = new ilGlossaryTerm($id);
1037  $term->delete();
1038  }
1039  }
1040  }
1041  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
1042  $this->ctrl->redirect($this, "listTerms");
1043  }
1044 
1045  protected function setLocator(): void
1046  {
1047  if (strtolower($this->edit_request->getBaseClass()) != "ilglossaryeditorgui") {
1048  parent::setLocator();
1049  } elseif (is_object($this->object)) {
1050  $gloss_loc = new ilGlossaryLocatorGUI();
1051  if (is_object($this->term)) {
1052  $gloss_loc->setTerm($this->term);
1053  }
1054  $gloss_loc->setGlossary($this->getGlossary());
1055  $gloss_loc->display();
1056  }
1057  }
1058 
1059  public function view(): void
1060  {
1061  $this->viewObject();
1062  }
1063 
1064  public function getTemplate(): void
1065  {
1066  $this->tpl->loadStandardTemplate();
1067 
1068  $title = $this->object->getTitle();
1069 
1070 
1071  if ($this->term_id > 0) {
1072  $this->tpl->setTitle($this->lng->txt("term") . ": " .
1073  ilGlossaryTerm::_lookGlossaryTerm($this->term_id));
1074  } else {
1075  parent::setTitleAndDescription();
1076  $this->tpl->setTitleIcon(ilUtil::getImagePath("standard/icon_glo.svg"));
1077  $this->tpl->setTitle($this->lng->txt("glo") . ": " . $title);
1078  }
1079  }
1080 
1081  protected function getTabs(): void
1082  {
1083  $this->help->setScreenIdComponent("glo");
1084 
1085  // list terms
1086  $cmd = $this->ctrl->getCmd();
1087  $force_active = ($cmd == "" || $cmd == "listTerms");
1088  $this->tabs_gui->addTab(
1089  "content",
1090  $this->lng->txt("content"),
1091  $this->ctrl->getLinkTarget($this, "listTerms")
1092  );
1093 
1094  $this->tabs_gui->addTab(
1095  "info_short",
1096  $this->lng->txt("info_short"),
1097  $this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary")
1098  );
1099 
1100  // properties
1101  if ($this->rbacsystem->checkAccess('write', $this->object->getRefId())) {
1102  $this->tabs_gui->addTab(
1103  "settings",
1104  $this->lng->txt("settings"),
1105  $this->ctrl->getLinkTargetByClass(SettingsGUI::class)
1106  );
1107 
1108  // meta data
1109  $mdgui = new ilObjectMetaDataGUI($this->object, "term");
1110  $mdtab = $mdgui->getTab();
1111  if ($mdtab) {
1112  $this->tabs_gui->addTab(
1113  "meta_data",
1114  $this->lng->txt("meta_data"),
1115  $mdtab
1116  );
1117  }
1118 
1119  // export
1120  $this->tabs_gui->addTab(
1121  "export",
1122  $this->lng->txt("export"),
1123  $this->ctrl->getLinkTargetByClass("ilexportgui", "")
1124  );
1125  }
1126 
1127  // permissions
1128  if ($this->rbacsystem->checkAccess('edit_permission', $this->object->getRefId())) {
1129  $this->tabs_gui->addTab(
1130  "perm_settings",
1131  $this->lng->txt("perm_settings"),
1132  $this->ctrl->getLinkTargetByClass(array(get_class($this),'ilpermissiongui'), "perm")
1133  );
1134  }
1135 
1136  $this->tabs_gui->addNonTabbedLink(
1137  "presentation_view",
1138  $this->lng->txt("glo_presentation_view"),
1139  "ilias.php?baseClass=ilGlossaryPresentationGUI&amp;ref_id=" . $this->object->getRefId()
1140  );
1141  }
1142 
1143  public function setSettingsSubTabs(string $a_active): void
1144  {
1145  if (in_array(
1146  $a_active,
1147  array("general_settings", "style", "taxonomy", "glossaries")
1148  )) {
1149  // general properties
1150  $this->tabs->addSubTab(
1151  "general_settings",
1152  $this->lng->txt("settings"),
1153  $this->ctrl->getLinkTarget($this, 'properties')
1154  );
1155 
1156  // style properties
1157  $this->tabs->addSubTab(
1158  "style",
1159  $this->lng->txt("obj_sty"),
1160  $this->ctrl->getLinkTargetByClass("ilobjectcontentstylesettingsgui", '')
1161  );
1162 
1163  $this->taxonomy->gui()->addSettingsSubTab($this->getObject()->getId());
1164 
1165  // style properties
1166  $this->tabs->addSubTab(
1167  "glossaries",
1168  $this->lng->txt("cont_auto_glossaries"),
1169  $this->ctrl->getLinkTarget($this, 'editGlossaries')
1170  );
1171 
1172  $this->tabs->activateSubTab($a_active);
1173  }
1174  }
1175 
1176 
1177  public static function _goto(string $a_target): void
1178  {
1179  global $DIC;
1180  $main_tpl = $DIC->ui()->mainTemplate();
1181 
1182  $lng = $DIC->language();
1183  $ilAccess = $DIC->access();
1184  $ctrl = $DIC->ctrl();
1185 
1186  if ($ilAccess->checkAccess("read", "", $a_target)) {
1187  $ctrl->setParameterByClass("ilGlossaryPresentationGUI", "ref_id", $a_target);
1188  $ctrl->redirectByClass("ilGlossaryPresentationGUI", "");
1189  } elseif ($ilAccess->checkAccess("visible", "", $a_target)) {
1190  $ctrl->setParameterByClass("ilGlossaryPresentationGUI", "ref_id", $a_target);
1191  $ctrl->redirectByClass("ilGlossaryPresentationGUI", "infoScreen");
1192  } elseif ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
1193  $main_tpl->setOnScreenMessage('failure', sprintf(
1194  $lng->txt("msg_no_perm_read_item"),
1196  ), true);
1198  }
1199 
1200  throw new ilPermissionException($lng->txt("no_permission"));
1201  }
1202 
1203 
1207 
1208  public function setContentStyleSheet(
1210  ): void {
1211  if ($a_tpl != null) {
1212  $ctpl = $a_tpl;
1213  } else {
1214  $ctpl = $this->tpl;
1215  }
1216 
1217  $this->content_style_gui->addCss($ctpl, $this->object->getRefId());
1218  }
1219 
1223  public function getPublicAccessColValue(
1224  string $a_type,
1225  string $a_file
1226  ): string {
1227  if ($this->object->getPublicExportFile($a_type) == $a_file) {
1228  return $this->lng->txt("yes");
1229  }
1230 
1231  return " ";
1232  }
1233 
1237  public function showTaxonomy(): void
1238  {
1239  $ctrl = $this->ctrl;
1240 
1241  if (is_null($this->tax_manager) || !$this->tax_manager->showInEditing()) {
1242  return;
1243  }
1244 
1245  $tool_context = $this->global_screen->tool()->context()->current();
1246 
1247  $tax_id = $this->tax_manager->getTaxonomyId();
1248 
1249  $tool_context->addAdditionalData(
1251  true
1252  );
1253  $tool_context->addAdditionalData(
1256  );
1257  $tool_context->addAdditionalData(
1259  $tax_id
1260  );
1261  $tool_context->addAdditionalData(
1263  "listTerms"
1264  );
1265  $tool_context->addAdditionalData(
1267  "showTaxonomy"
1268  );
1269  }
1270 
1271  //
1272  // Auto glossaries
1273  //
1274 
1278  public function editGlossaries(): void
1279  {
1280  $this->tabs->setTabActive("settings");
1281  $this->setSettingsSubTabs("glossaries");
1282 
1283  $this->toolbar->addButton(
1284  $this->lng->txt("add"),
1285  $this->ctrl->getLinkTarget($this, "showGlossarySelector")
1286  );
1287 
1288  $table = $this->domain->table()->getGlossaryAutoLinkTable($this->getGlossary())->getComponent();
1289 
1290  $this->tpl->setContent($this->ui_ren->render($table));
1291  }
1292 
1296  public function showGlossarySelector(): void
1297  {
1298  $this->tabs->setTabActive("settings");
1299  $this->setSettingsSubTabs("glossaries");
1300 
1301  $exp = new ilSearchRootSelector($this->ctrl->getLinkTarget($this, 'showGlossarySelector'));
1302  $search_root_expand = $this->edit_request->getSearchRootExpand();
1303  $exp->setExpand($search_root_expand ?: $this->tree->readRootId());
1304  $exp->setExpandTarget($this->ctrl->getLinkTarget($this, 'showGlossarySelector'));
1305  $exp->setTargetClass(get_class($this));
1306  $exp->setCmd('confirmGlossarySelection');
1307  $exp->setClickableTypes(array("glo"));
1308  $exp->addFilter("glo");
1309 
1310  // build html-output
1311  $exp->setOutput(0);
1312  $this->tpl->setContent($exp->getOutput());
1313  }
1314 
1315  public function confirmGlossarySelection(): void
1316  {
1317  $cgui = new ilConfirmationGUI();
1318  $this->ctrl->setParameter($this, "glo_ref_id", $this->edit_request->getGlossaryRefId());
1319  $cgui->setFormAction($this->ctrl->getFormAction($this));
1320  $cgui->setHeaderText($this->lng->txt("glo_link_glo_in_glo"));
1321  $cgui->setCancel($this->lng->txt("no"), "selectGlossary");
1322  $cgui->setConfirm($this->lng->txt("yes"), "selectGlossaryLink");
1323  $this->tpl->setContent($cgui->getHTML());
1324  }
1325 
1329  public function selectGlossaryLink(): void
1330  {
1331  $glo_ref_id = $this->edit_request->getGlossaryRefId();
1332  $this->object->autoLinkGlossaryTerms($glo_ref_id);
1333  $this->selectGlossary();
1334  }
1335 
1336 
1340  public function selectGlossary(): void
1341  {
1342  $glos = $this->object->getAutoGlossaries();
1343  $glo_ref_id = $this->edit_request->getGlossaryRefId();
1344  $glo_id = ilObject::_lookupObjId($glo_ref_id);
1345  if (!in_array($glo_id, $glos)) {
1346  $glos[] = $glo_id;
1347  }
1348  $this->object->setAutoGlossaries($glos);
1349  $this->object->update();
1350 
1351  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
1352  $this->ctrl->redirect($this, "editGlossaries");
1353  }
1354 
1355  public function removeGlossary(): void
1356  {
1357  $this->object->removeAutoGlossary($this->edit_request->getGlossaryIdInModal());
1358  $this->object->update();
1359 
1360  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
1361  $this->ctrl->redirect($this, "editGlossaries");
1362  }
1363 
1367  public function copyTerms(): void
1368  {
1369  $this->putTermsIntoClipBoard();
1370 
1372  $this->tpl->setOnScreenMessage('info', $this->lng->txt("glo_selected_terms_have_been_copied"), true);
1373  $this->ctrl->redirect($this, "listTerms");
1374  }
1375 
1379  public function referenceTerms(): void
1380  {
1381  $this->putTermsIntoClipBoard();
1382 
1384  $this->tpl->setOnScreenMessage('info', $this->lng->txt("glo_selected_terms_have_been_copied"), true);
1385  $this->ctrl->redirect($this, "listTerms");
1386  }
1387 
1388  protected function putTermsIntoClipBoard(): void
1389  {
1390  $this->user->clipboardDeleteObjectsOfType("term");
1391  $time = date("Y-m-d H:i:s");
1392  $order = 0;
1393  if (($this->requested_table_glossary_term_list_action === "copyTerms"
1394  || $this->requested_table_glossary_term_list_action === "referenceTerms")
1395  && !empty($this->requested_table_glossary_term_list_ids)
1396  && $this->requested_table_glossary_term_list_ids[0] === "ALL_OBJECTS"
1397  ) {
1398  $terms = $this->object->getTermList(
1399  "",
1400  "",
1401  "",
1402  $this->tax_node,
1403  true,
1404  true,
1405  null,
1406  false,
1407  true
1408  );
1409  foreach ($terms as $term) {
1410  $this->user->addObjectToClipboard(
1411  (int) $term["id"],
1412  "term",
1413  ilGlossaryTerm::_lookGlossaryTerm((int) $term["id"]),
1414  0,
1415  $time,
1416  $order
1417  );
1418  }
1419  } elseif ($this->requested_table_glossary_term_list_action === "copyTerms"
1420  || $this->requested_table_glossary_term_list_action === "referenceTerms") {
1421  foreach ($this->requested_table_glossary_term_list_ids as $term_id) {
1422  $this->user->addObjectToClipboard(
1423  (int) $term_id,
1424  "term",
1425  ilGlossaryTerm::_lookGlossaryTerm((int) $term_id),
1426  0,
1427  $time,
1428  $order
1429  );
1430  }
1431  }
1432  if (empty($this->requested_table_glossary_term_list_ids)) {
1433  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("no_checkbox"), true);
1434  $this->ctrl->redirect($this, "listTerms");
1435  }
1436  }
1437 
1438 
1439  public function clearClipboard(): void
1440  {
1441  $this->user->clipboardDeleteObjectsOfType("term");
1442  $this->ctrl->redirect($this, "listTerms");
1443  }
1444 
1445  public function pasteTerms(): void
1446  {
1447  if (ilEditClipboard::getAction() == "copy") {
1448  foreach ($this->user->getClipboardObjects("term") as $item) {
1449  ilGlossaryTerm::_copyTerm($item["id"], $this->object->getId());
1450  }
1451  }
1452  if (ilEditClipboard::getAction() == "link") {
1453  $refs = new ilGlossaryTermReferences($this->object->getId());
1454  foreach ($this->user->getClipboardObjects("term") as $item) {
1455  $refs->addTerm($item["id"]);
1456  }
1457  $refs->update();
1458  }
1459  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
1460  $this->ctrl->redirect($this, "listTerms");
1461  }
1462 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct( $a_data, int $a_id=0, bool $a_call_by_reference=true, bool $a_prepare_output=true)
static getInstance(ilObjGlossaryGUI $a_glossary_gui)
GUI class for ilGlossary.
static setAction(string $a_action)
This class represents an option in a radio group.
ILIAS GlobalScreen Services $global_screen
Class ilObjectMetaDataGUI.
ilTermDefinitionBulkCreationGUI $term_def_bulk_gui
static addUsagesToInfo(ilInfoScreenGUI $info, int $glo_id)
Add usages to info screen.
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
This class represents a selection list property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
addGlossaryForCollection(int $glo_id)
setDisabled(bool $a_disabled)
GUI class for the workflow of copying objects.
const ROOT_FOLDER_ID
Definition: constants.php:32
const TITLE_LENGTH
editGlossaries()
Edit automatically linked glossaries.
ILIAS Glossary Presentation GUIService $gui_presentation_service
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepareOutput(bool $show_sub_objects=true)
initCreateForm(string $new_type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface Observer Contains several chained tasks and infos about them.
initSettingsForm(string $a_mode="edit")
setInfo(string $a_info)
static _getAllReferences(int $id)
get all reference ids for object ID
Help GUI class.
ILIAS Glossary Term TermManager $term_manager
setTarget(string $a_target)
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
static getScormModulesForGlossary(int $a_glo_id)
Get SCORM modules that assign a certain glossary.
getDidacticTemplateVar(string $type)
Get didactic template setting from creation screen.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
array $requested_table_glossary_term_list_ids
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
exportHTML()
create html package
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPublicAccessColValue(string $a_type, string $a_file)
Get public access value for export table.
createObject()
create new object form
setOptions(array $a_options)
static updateServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
ILIAS DI UIServices $ui
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
$components
setGlossary(ilObjGlossary $a_glossary)
static isReferenced(array $a_glo_id, int $a_term_id)
Is a term referenced by a set of glossaries.
static _lookupObjId(int $ref_id)
static _copyTerm(int $a_term_id, int $a_glossary_id)
Copy a term to a glossary.
ILIAS Glossary Taxonomy TaxonomyManager $tax_manager
showTaxonomy()
Show taxonomy.
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
ilLanguage $lng
ILIAS Style Content GUIService $content_style_gui
ILIAS UI Factory $ui_fac
This class represents a property in a property form.
ilGlobalTemplateInterface $tpl
ILIAS Glossary Editing EditingGUIRequest $edit_request
ilGlossaryTermPermission $term_perm
deactTaxonomy()
Hide Taxonomy.
static _lookupTitle(int $obj_id)
setTerm(string $a_term)
setFormAction(string $a_formaction)
This class represents a number property in a property form.
create(bool $a_omit_page_creation=false)
selectGlossaryLink()
Select a glossary and link all its terms.
initDidacticTemplate(ilPropertyFormGUI $form)
Class ilObjectGUI Basic methods of all Output classes.
setValue(string $a_value)
static _lookGlossaryTerm(int $term_id)
get glossary term
static _goto(string $a_target)
global $DIC
Definition: shib_login.php:22
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static getTermsOfGlossary(int $a_glo_id)
addSection(string $a_title)
ILIAS Style Content Object ObjectFacade $content_style_domain
copyTerms()
Copy terms to clipboard.
putObjectInTree(ilObject $obj, ?int $parent_node_id=null)
Add object to tree at given position.
static initServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
addCommandButton(string $a_cmd, string $a_text, string $a_id="")
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
setLanguage(string $a_language)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$lang
Definition: xapiexit.php:25
setContentStyleSheet(?ilGlobalTemplateInterface $a_tpl=null)
setSettingsSubTabs(string $a_active)
getCurrentClassPath()
form( $class_path, string $cmd, string $submit_caption="")
addCss(string $a_css_file, string $media="screen")
Add a css file that should be included in the header.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
selectGlossary()
Select auto glossary.
referenceTerms()
Add terms to be referenced to clipboard.
static setShortTextsDirty(int $a_glo_id)
Set all short texts of glossary dirty (e.g.
static yn2tf(string $a_yn)
ilPropertyFormGUI $form
setTabs()
set admin tabs
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
delete()
delete glossary term
ILIAS Glossary InternalGUIService $gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showGlossarySelector()
Show auto glossary selection.
publishExportFile()
download export file
addHeaderAction()
Add header action menu.
$service
Definition: ltiservices.php:40
ILIAS Glossary InternalDomainService $domain
setDisabled(bool $a_disabled)
ILIAS UI Renderer $ui_ren
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
ILIAS Taxonomy Service $taxonomy
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
setExpand($a_node_id)
set the expand option this value is stored in a SESSION variable to save it different view (lo view...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $requested_table_glossary_term_list_action
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
static _lookGlossaryID(int $term_id)
get glossary id form term id