ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjOrgUnitGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
44 {
45  public const TAB_POSITIONS = 'positions';
46  public const TAB_ORGU_TYPES = 'orgu_types';
47  public const TAB_SETTINGS = "settings";
48  public const TAB_STAFF = 'orgu_staff';
49  public const TAB_GLOBAL_SETTINGS = 'global_settings';
50  public const TAB_EXPORT = 'export';
51  public const TAB_VIEW_CONTENT = 'view_content';
52  public const CMD_EDIT_SETTINGS = 'editSettings';
53 
54  public ilCtrl $ctrl;
59  public ilTree $tree;
60  public ?ilObject $object;
61  protected \ILIAS\DI\LoggingServices $ilLog;
62  public Ilias $ilias;
63 
64  public function __construct()
65  {
66  global $DIC;
67  $this->ilLocator = $DIC['ilLocator'];
68  $this->tree = $DIC->repositoryTree();
69  $this->toolbar = $DIC->toolbar();
70  $this->ilLog = $DIC->logger();
71  $this->ilias = $DIC['ilias'];
72  $this->type = 'orgu';
73 
75  $this->ctrl = $dic['ctrl'];
76  $this->ilAccess = $dic['access'];
77  $to_int = $dic['refinery']->kindlyTo()->int();
78  $this->ref_id = $dic['query']->retrieve('ref_id', $to_int);
79 
80  parent::__construct(array(), $this->ref_id, true, false);
81 
82  $this->lng = $dic['lng'];
83  $this->lng->loadLanguageModule("orgu");
84 
85  $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(
86  OrgUnitToolProvider::SHOW_ORGU_TREE,
87  true
88  );
89  }
90 
96  public function executeCommand(): void
97  {
98  $cmd = $this->ctrl->getCmd();
99  $next_class = $this->ctrl->getNextClass($this);
100  parent::prepareOutput();
101 
102  switch ($next_class) {
103  case 'ilorgunitglobalsettingsgui':
104  $this->tabs_gui->activateTab(self::TAB_GLOBAL_SETTINGS);
105  $global_settings = new ilOrgUnitGlobalSettingsGUI();
106  $this->ctrl->forwardCommand($global_settings);
107  break;
108  case "illocalusergui":
110  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("permission_denied"), true);
111  $this->ctrl->redirect($this);
112  }
113  $this->tabs_gui->activateTab('administrate_users');
114  $ilLocalUserGUI = new ilLocalUserGUI($this);
115  $this->ctrl->forwardCommand($ilLocalUserGUI);
116  break;
117  case "ilorgunitsimpleimportgui":
118  $this->tabs_gui->activateTab("view");
119  $this->setContentSubTabs();
120  $this->tabs_gui->setSubTabActive('import');
121  $ilOrgUnitSimpleImportGUI = new ilOrgUnitSimpleImportGUI($this);
122  $this->ctrl->forwardCommand($ilOrgUnitSimpleImportGUI);
123  break;
124  case "ilorgunitsimpleuserimportgui":
125  $ilOrgUnitSimpleUserImportGUI = new ilOrgUnitSimpleUserImportGUI($this);
126  $this->ctrl->forwardCommand($ilOrgUnitSimpleUserImportGUI);
127  break;
128  case "ilobjusergui":
129  switch ($cmd) {
130  case "create":
131  $ilObjUserGUI = new ilObjUserGUI("", $this->ref_id, true, false);
132  $ilObjUserGUI->setCreationMode(true);
133  $this->ctrl->forwardCommand($ilObjUserGUI);
134  $this->tabs_gui->setBackTarget(
135  $this->lng->txt("back"),
136  $this->ctrl->getLinkTargetByClass("illocalusergui", 'index')
137  );
138  break;
139  case "save":
140  $ilObjUserGUI = new ilObjUserGUI("", $this->ref_id, true, false);
141  $ilObjUserGUI->setCreationMode(true);
142  $this->ctrl->forwardCommand($ilObjUserGUI);
143  $this->tabs_gui->clearTargets();
144  $this->tabs_gui->setBackTarget(
145  $this->lng->txt("back"),
146  $this->ctrl->getLinkTargetByClass("illocalusergui", 'index')
147  );
148  break;
149  case "view":
150  case "update":
151  $ilObjUserGUI = new ilObjUserGUI("", (int) $_GET['obj_id'], false, false);
152  $ilObjUserGUI->setCreationMode(false);
153  $this->ctrl->forwardCommand($ilObjUserGUI);
154  $this->tabs_gui->clearTargets();
155  $this->tabs_gui->setBackTarget(
156  $this->lng->txt("back"),
157  $this->ctrl->getLinkTargetByClass("illocalusergui", 'index')
158  );
159  break;
160  case "cancel":
161  $this->ctrl->redirectByClass("illocalusergui", "index");
162  break;
163  }
164  break;
165  case "ilobjuserfoldergui":
166  switch ($cmd) {
167  case "view":
168  $this->ctrl->redirectByClass("illocalusergui", "index");
169  break;
170  default:
171  $ilObjUserFolderGUI = new ilObjUserFolderGUI("", $this->ref_id, true, false);
172  $ilObjUserFolderGUI->setUserOwnerId($this->ref_id);
173  $ilObjUserFolderGUI->setCreationMode(true);
174  $this->ctrl->forwardCommand($ilObjUserFolderGUI);
175  $this->tabs_gui->clearTargets();
176  $this->tabs_gui->setBackTarget(
177  $this->lng->txt("back"),
178  $this->ctrl->getLinkTargetByClass("illocalusergui", 'index')
179  );
180  break;
181  }
182  break;
183  case "ilinfoscreengui":
184  $this->tabs_gui->activateTab("info_short");
185  if (!$this->ilAccess->checkAccess(
186  "read",
187  "",
188  $this->ref_id
189  ) and !$this->ilAccess->checkAccess("visible", "", $this->ref_id)) {
190  $this->ilias->raiseError($this->lng->txt("msg_no_perm_read"), $this->ilias->error_obj->MESSAGE);
191  }
192  $info = new ilInfoScreenGUI($this);
193  $amd_gui = new ilAdvancedMDRecordGUI(
195  'orgu',
196  $this->object->getId(),
197  'orgu_type',
198  $this->object->getOrgUnitTypeId()
199  );
200  $amd_gui->setInfoObject($info);
201  $amd_gui->parse();
202  $this->ctrl->forwardCommand($info);
203  break;
204  case 'ilpermissiongui':
205  $this->tabs_gui->activateTab('perm_settings');
206  $ilPermissionGUI = new ilPermissionGUI($this);
207  $this->ctrl->forwardCommand($ilPermissionGUI);
208  break;
209  case "ilcommonactiondispatchergui":
211  $this->ctrl->forwardCommand($gui);
212  break;
213  case 'illearningprogressgui':
214  case 'illplistofprogressgui':
215  $this->tabs_gui->clearTargets();
216  $this->tabs_gui->setBackTarget(
217  $this->lng->txt('backto_staff'),
218  $this->ctrl->getLinkTargetByClass(
219  ilOrgUnitUserAssignmentGUI::class,
221  )
222  );
224  $this->object->getRefid(),
225  (int) $_GET['obj_id']
226  )) {
227  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("permission_denied"), true);
228  $this->ctrl->redirectByClass("ilOrgUnitUserAssignmentGUI", "index");
229  }
230  $this->ctrl->saveParameterByClass("illearningprogressgui", "obj_id");
231  $this->ctrl->saveParameterByClass("illearningprogressgui", "recursive");
232  $new_gui = new ilLearningProgressGUI(
234  $this->ref_id,
235  (int) $_GET['obj_id']
236  );
237  $this->ctrl->forwardCommand($new_gui);
238  break;
239  case 'ilorgunitexportgui':
240  if (!ilObjOrgUnitAccess::_checkAccessExport($this->ref_id)) {
241  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("permission_denied"), true);
242  $this->ctrl->redirect($this);
243  }
244  $this->tabs_gui->activateTab(self::TAB_EXPORT);
245  $ilOrgUnitExportGUI = new ilOrgUnitExportGUI($this);
246  $ilOrgUnitExportGUI->addFormat('xml');
247  $this->ctrl->forwardCommand($ilOrgUnitExportGUI);
248  break;
249  case strtolower(ilObjectTranslationGUI::class):
250  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
251  $this->setSubTabsSettings('edit_translations');
252  $translations_gui = new ilObjectTranslationGUI($this);
253  $translations_gui->supportContentTranslation(false);
254  $this->ctrl->forwardCommand($translations_gui);
255  break;
256  case strtolower(ilOrgUnitTypeGUI::class):
257  $this->tabs_gui->activateTab(self::TAB_ORGU_TYPES);
258  $types_gui = new ilOrgUnitTypeGUI($this);
259  $this->ctrl->forwardCommand($types_gui);
260  break;
261  case strtolower(ilOrgUnitPositionGUI::class):
262  $this->tabs_gui->activateTab(self::TAB_POSITIONS);
263  $types_gui = new ilOrgUnitPositionGUI($this);
264  $this->ctrl->forwardCommand($types_gui);
265  break;
266  case strtolower(ilOrgUnitUserAssignmentGUI::class):
267  $this->tabs_gui->activateTab(self::TAB_STAFF);
268  $ilOrgUnitUserAssignmentGUI = new ilOrgUnitUserAssignmentGUI();
269  $this->ctrl->forwardCommand($ilOrgUnitUserAssignmentGUI);
270  break;
271  case strtolower(ilPropertyFormGUI::class):
272  /*
273  * Only used for async loading of the repository tree in custom md
274  * internal links (see #24875). This is necessary since OrgUnits don't
275  * use ilObjectMetaDataGUI.
276  */
277  $form = $this->initAdvancedSettingsForm();
278  $gui = new ilAdvancedMDRecordGUI(ilAdvancedMDRecordGUI::MODE_EDITOR, 'orgu', $this->object->getId(), 'orgu_type', $this->object->getOrgUnitTypeId());
279  $gui->setPropertyForm($form);
280  $gui->parse();
281  $this->ctrl->forwardCommand($form);
282  break;
283  default:
284  $this->tabs_gui->activateTab(self::TAB_VIEW_CONTENT);
285  switch ($cmd) {
286  case '':
287  case 'view':
288  case 'render':
289  case 'cancel':
290  case 'cancelDelete':
291  case 'return':
292  $this->view();
293  break;
294  case 'performPaste':
295  case 'paste':
296  $this->performPaste();
297  break;
298  case 'performPasteIntoMultipleObjects':
300  break;
301  case 'keepObjectsInClipboard':
303  break;
304  case 'create':
305  parent::createObject();
306  break;
307  case 'save':
308  parent::saveObject();
309  break;
310  case 'delete':
311  $this->tabs_gui->clearTargets();
312  $this->tabs_gui->setBackTarget($this->lng->txt("back"), $this->ctrl->getLinkTarget($this));
313  $this->deleteObject();
314  break;
315  case 'confirmedDelete':
316  $this->confirmedDeleteObject();
317  break;
318  case 'cut':
319  $this->tabs_gui->clearTargets();
320  $this->tabs_gui->setBackTarget($this->lng->txt("back"), $this->ctrl->getLinkTarget($this));
321  parent::cutObject();
322  break;
323  case 'clear':
324  parent::clearObject();
325  break;
326  case 'enableAdministrationPanel':
327  parent::enableAdministrationPanelObject();
328  break;
329  case 'disableAdministrationPanel':
330  parent::disableAdministrationPanelObject();
331  break;
332  case self::CMD_EDIT_SETTINGS:
333  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
334  $this->setSubTabsSettings('edit_settings');
335  $this->editSettings();
336  break;
337  case 'updateSettings':
338  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
339  $this->setSubTabsSettings('edit_settings');
340  $this->updateSettings();
341  break;
342  case 'editAdvancedSettings':
343  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
344  $this->setSubTabsSettings('edit_advanced_settings');
345  $this->editAdvancedSettings();
346  break;
347  case 'updateAdvancedSettings':
348  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
349  $this->setSubTabsSettings('edit_advanced_settings');
350  $this->updateAdvancedSettings();
351  break;
352  case 'routeImportCmd':
353  $this->routeImportCmdObject();
354  break;
355  case 'cancelMoveLink':
356  $this->cancelMoveLinkObject();
357  break;
358  }
359  break;
360  }
361  }
362 
363  protected function afterSave(ilObject $new_object): void
364  {
365  $new_object->writePath();
366  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
367  $this->ctrl->setParameter($this, "ref_id", $new_object->getRefId());
368 
370  "save",
371  $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS, "")
372  ));
373  }
374 
375  public function view(): void
376  {
377  if (!$this->rbacsystem->checkAccess("read", $this->ref_id)) {
378  if ($this->rbacsystem->checkAccess("visible", $this->ref_id)) {
379  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("msg_no_perm_read"));
380  $this->ctrl->redirectByClass('ilinfoscreengui', '');
381  }
382 
383  $this->ilias->raiseError($this->lng->txt("msg_no_perm_read"), $this->ilias->error_obj->WARNING);
384  }
385 
386  $container_view = $this->getContentGUI();
387 
388  $this->setContentSubTabs();
389  if ($this->isActiveAdministrationPanel()) {
390  $this->tabs->activateSubTab("manage");
391  } else {
392  $this->tabs->activateSubTab("view_content");
393  }
394 
395  $container_view->setOutput();
396 
397  // it is important not to show the subobjects/admin panel here, since
398  // we will create nested forms in case, e.g. a news/calendar item is added
399  if (! $this->ctrl->isAsynch()) {
400  $this->showAdministrationPanel();
401  $this->showPossibleSubObjects();
402  }
403 
404  $container_view->setOutput();
405 
406  $this->showPermanentLink();
407  $this->tabs_gui->activateTab(self::TAB_VIEW_CONTENT);
408  $this->tabs_gui->removeSubTab("page_editor");
409  $this->tabs_gui->removeSubTab("ordering"); // Mantis 0014728
410  }
411 
412  protected function showPossibleSubObjects(): void
413  {
414  $subtypes = $this->getCreatableObjectTypes();
415  if ($subtypes === []) {
416  return;
417  }
419  [$this->buildGroup(
420  self::class,
421  array_keys($subtypes),
422  $this->lng->txt('other'),
423  $subtypes
424  )]
425  );
426  $gui->render();
427  }
428 
429  public function getCreatableObjectTypes(): array
430  {
431  $subtypes = $this->obj_definition->getCreatableSubObjects(
432  $this->object->getType(),
434  $this->object->getRefId()
435  );
436  unset($subtypes[ilObjEmployeeTalkSeries::TYPE]);
437  return array_filter(
438  $subtypes,
439  fn($key) => $this->access->checkAccess('create_' . $key, '', $this->ref_id, $this->type),
440  ARRAY_FILTER_USE_KEY
441  );
442  }
443 
447  public function setTitleAndDescription(): void
448  {
449  # all possible create permissions
450  parent::setTitleAndDescription();
451  if ($this->object->getTitle() === "__OrgUnitAdministration") {
452  $this->tpl->setTitle($this->lng->txt("objs_orgu"));
453  $this->tpl->setDescription($this->lng->txt("objs_orgu"));
454  }
455 
456  // Check for custom icon of type
457  if ($this->ilias->getSetting('custom_icons')) {
458  $icons_cache = ilObjOrgUnit::getIconsCache();
459  $icon_file = (isset($icons_cache[$this->object->getId()])) ? $icons_cache[$this->object->getId()] : '';
460  if ($icon_file) {
461  $this->tpl->setTitleIcon($icon_file, $this->lng->txt("obj_" . $this->object->getType()));
462  }
463  }
464  }
465 
466  protected function addAdminLocatorItems(bool $do_not_add_object = false): void
467  {
468  $path = $this->tree->getPathFull($this->ref_id, ilObjOrgUnit::getRootOrgRefId());
469  // add item for each node on path
470  foreach ((array) $path as $key => $row) {
471  if ($row["title"] === "__OrgUnitAdministration") {
472  $row["title"] = $this->lng->txt("objs_orgu");
473  }
474  $this->ctrl->setParameterByClass("ilobjorgunitgui", "ref_id", $row["child"]);
475  $this->ilLocator->addItem(
476  $row["title"],
477  $this->ctrl->getLinkTargetByClass("ilobjorgunitgui", "view"),
478  ilFrameTargetInfo::_getFrame("MainContent"),
479  $row["child"]
480  );
481  $this->ctrl->setParameterByClass("ilobjorgunitgui", "ref_id", $this->ref_id);
482  }
483  }
484 
485  protected function redirectToRefId(int $ref_id, string $cmd = ""): void
486  {
487  $obj_type = ilObject::_lookupType($ref_id, true);
488  if ($obj_type !== "orgu") {
489  parent::redirectToRefId($ref_id, $cmd);
490  } else {
491  $this->ctrl->setParameterByClass("ilObjOrgUnitGUI", "ref_id", $ref_id);
492  $this->ctrl->redirectByClass("ilObjOrgUnitGUI", $cmd);
493  }
494  }
495 
496  public function getTabs(): void
497  {
498  $read_access_ref_id = $this->rbacsystem->checkAccess('visible', $this->object->getRefId())
499  && $this->rbacsystem->checkAccess('read', $this->object->getRefId());
500  if ($read_access_ref_id) {
501  $this->tabs_gui->addTab(
502  self::TAB_VIEW_CONTENT,
503  $this->lng->txt("content"),
504  $this->ctrl->getLinkTarget($this, "")
505  );
506  $this->tabs_gui->addTab(
507  "info_short",
508  "Info",
509  $this->ctrl->getLinkTargetByClass([self::class, ilInfoScreenGUI::class], "showSummary")
510  );
511  }
512 
513  // Tabs for OrgUnits exclusive root!
514  if ($this->object->getRefId() != ilObjOrgUnit::getRootOrgRefId()) {
515  if (ilObjOrgUnitAccess::_checkAccessStaff($this->object->getRefId())) {
516  $this->tabs_gui->addTab(
517  self::TAB_STAFF,
518  $this->lng->txt(self::TAB_STAFF),
519  $this->ctrl->getLinkTargetByClass(
520  [self::class, ilOrgUnitUserAssignmentGUI::class],
522  )
523  );
524  }
525  if (ilObjOrgUnitAccess::_checkAccessSettings($this->object->getRefId())) {
526  $this->tabs_gui->addTab(
527  self::TAB_SETTINGS,
528  $this->lng->txt(self::TAB_SETTINGS),
529  $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS)
530  );
531  }
533  $this->tabs_gui->addTab(
534  "administrate_users",
535  $this->lng->txt("administrate_users"),
536  $this->ctrl->getLinkTargetByClass(
537  [self::class, ilLocalUserGUI::class],
538  'index'
539  )
540  );
541  }
542  }
543 
544  if (ilObjOrgUnitAccess::_checkAccessSettings($this->object->getRefId())) {
545  if ($this->object->getRefId() == ilObjOrgUnit::getRootOrgRefId()) {
546  $this->tabs_gui->addTab(
547  self::TAB_GLOBAL_SETTINGS,
548  $this->lng->txt('settings'),
549  $this->ctrl->getLinkTargetByClass(
550  [self::class, ilOrgUnitGlobalSettingsGUI::class]
551  )
552  );
553  }
554  $this->tabs_gui->addTab(
555  self::TAB_EXPORT,
556  $this->lng->txt(self::TAB_EXPORT),
557  $this->ctrl->getLinkTargetByClass(
558  [self::class, ilOrgUnitExportGUI::class]
559  )
560  );
561 
562  // Add OrgUnit types and positions tabs
563  if ($this->object->getRefId() == ilObjOrgUnit::getRootOrgRefId()) {
564  $this->tabs_gui->addTab(
565  self::TAB_ORGU_TYPES,
566  $this->lng->txt(self::TAB_ORGU_TYPES),
567  $this->ctrl->getLinkTargetByClass(
568  [self::class, ilOrgUnitTypeGUI::class]
569  )
570  );
571  $this->tabs_gui->addTab(
572  self::TAB_POSITIONS,
573  $this->lng->txt(self::TAB_POSITIONS),
574  $this->ctrl->getLinkTargetByClass(
575  [self::class, ilOrgUnitPositionGUI::class]
576  )
577  );
578  }
579  }
580  parent::getTabs();
581  }
582 
583  protected function setSubTabsSettings(string $active_tab_id): void
584  {
585  $next_class = $this->ctrl->getNextClass($this);
586  $cmd = $this->ctrl->getCmd();
587  $this->tabs_gui->addSubTab(
588  'edit_settings',
589  $this->lng->txt(self::TAB_SETTINGS),
590  $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS)
591  );
592  $this->tabs_gui->addSubTab(
593  "edit_translations",
594  $this->lng->txt("obj_multilinguality"),
595  $this->ctrl->getLinkTargetByClass("ilobjecttranslationgui", "listTranslations")
596  );
597 
598  $ilOrgUnitType = $this->object->getOrgUnitType();
599  if ($ilOrgUnitType instanceof ilOrgUnitType) {
600  if (count($ilOrgUnitType->getAssignedAdvancedMDRecords(true))) {
601  $this->tabs_gui->addSubTab(
602  'edit_advanced_settings',
603  $this->lng->txt('orgu_adv_settings'),
604  $this->ctrl->getLinkTarget($this, 'editAdvancedSettings')
605  );
606  }
607  }
608 
609  $this->tabs_gui->setSubTabActive($active_tab_id);
610  switch ($next_class) {
611  case 'iltranslationgui':
612  $this->tabs_gui->setSubTabActive("edit_translations");
613  break;
614  case '':
615  switch ($cmd) {
616  case self::CMD_EDIT_SETTINGS:
617  $this->tabs_gui->setSubTabActive('edit_settings');
618  break;
619  case 'editAdvancedSettings':
620  case 'updateAdvancedSettings':
621  $this->tabs_gui->setSubTabActive('edit_advanced_settings');
622  break;
623  }
624  break;
625  }
626  }
627 
628  public function setContentSubTabs(): void
629  {
631 
632  $ref_id = $this->object->getRefId();
633  $may_create_orgus = $this->ilAccess->checkAccess("create_orgu", "", $ref_id, 'orgu');
634 
635  if ($ref_id === ilObjOrgUnit::getRootOrgRefId() //only display the import tab at the first level
636  && $may_create_orgus
637  ) {
638  $this->tabs_gui->addSubTab(
639  "import",
640  $this->lng->txt("import"),
641  $this->ctrl->getLinkTargetByClass([self::class, ilOrgUnitSimpleImportGUI::class], "chooseImport")
642  );
643  }
644  }
645 
650  {
651  $form = new ilPropertyFormGUI();
652  $form->setFormAction($this->ctrl->getFormAction($this));
653  $form->addCommandButton('updateAdvancedSettings', $this->lng->txt('save'));
654  $form->addCommandButton(self::CMD_EDIT_SETTINGS, $this->lng->txt('cancel'));
655 
656  return $form;
657  }
658 
662  protected function editAdvancedSettings(): void
663  {
664  if ($this->ilAccess->checkAccess("write", "", $this->ref_id) === false) {
665  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("permission_denied"), true);
666  $this->ctrl->redirect($this);
667  }
668  $form = $this->initAdvancedSettingsForm();
671  'orgu',
672  $this->object->getId(),
673  'orgu_type',
674  $this->object->getOrgUnitTypeId()
675  );
676  $gui->setPropertyForm($form);
677  $gui->parse();
678  $this->tpl->setContent($form->getHTML());
679  }
680 
684  protected function updateAdvancedSettings(): void
685  {
686  if (!$this->ilAccess->checkAccess('write', '', $this->ref_id)) {
687  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('permission_denied'), true);
688  $this->ctrl->redirect($this);
689  }
690  $form = $this->initAdvancedSettingsForm();
693  'orgu',
694  $this->object->getId(),
695  'orgu_type',
696  $this->object->getOrgUnitTypeId()
697  );
698  $gui->setPropertyForm($form);
699  $form->checkInput();
700  $gui->parse();
701  if ($gui->importEditFormPostValues()) {
702  $gui->writeEditForm();
703  $this->tpl->setOnScreenMessage('success', $this->lng->txt('settings_saved'), true);
704  $this->ctrl->redirect($this, 'editAdvancedSettings');
705  } else {
706  $this->tpl->setContent($form->getHTML());
707  }
708  }
709 
710  public function editSettings(): void
711  {
712  if (!$this->ilAccess->checkAccess('write', "", $this->ref_id)) {
713  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('permission_denied'), true);
714  $this->ctrl->redirect($this);
715  }
716  $form = new ilObjOrgUnitSettingsFormGUI($this, $this->object);
717  $this->tpl->setContent($form->getHTML());
718  }
719 
720  public function updateSettings(): void
721  {
722  if (!$this->ilAccess->checkAccess('write', '', $this->ref_id)) {
723  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('permission_denied'), true);
724  $this->ctrl->redirect($this);
725  }
726  $form = new ilObjOrgUnitSettingsFormGUI($this, $this->object);
727  if ($form->saveObject()) {
728  $this->tpl->setOnScreenMessage('success', $this->lng->txt('msg_obj_modified'), true);
729  $this->ctrl->redirect($this, self::CMD_EDIT_SETTINGS);
730  } else {
731  $this->tpl->setContent($form->getHTML());
732  }
733  }
734 
735  public function showAdministrationPanel(): void
736  {
737  parent::showAdministrationPanel();
738  //an ugly encapsulation violation in order to remove the "verknüpfen"/"link" and copy button.
739  if (empty($this->toolbar->items) === false) {
740  foreach ($this->toolbar->items as $key => $item) {
741  if ($item["cmd"] == "link" || $item["cmd"] == "copy"
742  || $item["cmd"] == "download"
743  ) {
744  unset($this->toolbar->items[$key]);
745  }
746  }
747  }
748  }
749 
750  public static function _goto(string $ref_id): void
751  {
752  global $DIC;
753  $ilCtrl = $DIC['ilCtrl'];
754  $ilCtrl->setTargetScript('ilias.php');
755  $ilCtrl->setParameterByClass("ilObjOrgUnitGUI", "ref_id", $ref_id);
756  $ilCtrl->setParameterByClass("ilObjOrgUnitGUI", "admin_mode", self::TAB_SETTINGS);
757  $ilCtrl->setParameterByClass("IlObjPluginDispatchGUI", "admin_mode", self::TAB_SETTINGS);
758  $ilCtrl->redirectByClass(array("ilAdministrationGUI", "ilObjOrgUnitGUI"), "view");
759  }
760 
761  protected function getTreeSelectorGUI(string $cmd): ilTreeExplorerGUI
762  {
763  $explorer = new ilOrgUnitExplorerGUI("rep_exp_sel", $this, "showPasteTree", $this->tree);
764  $explorer->setAjax(false);
765  $explorer->setSelectMode('nodes[]', false);
766 
767  return $explorer;
768  }
769 
770  public function getAdminTabs(): void
771  {
772  $this->getTabs();
773  }
774 
778  public function performPaste(): void
779  {
780  if ($this->clipboard->getCmd() != 'cut') {
781  $message = __METHOD__ . ": cmd was not 'cut' ; may be a hack attempt!";
782  $this->ilias->raiseError($message, $this->ilias->error_obj->WARNING);
783  } else {
784  if ($this->clipboard->hasEntries()) {
785  $this->pasteObject();
786  }
787  }
788  $this->ctrl->returnToParent($this);
789  }
790 
791  public function doUserAutoCompleteObject(): void
792  {
793  }
794 
795  //
796  // METHODS for local user administration.
797  //
798 
803  public function confirmedDeleteObject(): void
804  {
805  $ids = filter_input(INPUT_POST, 'id', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY);
806  if (count($ids) > 0) {
808  $this->tpl->setOnScreenMessage('success', $this->lng->txt("info_deleted"), true);
809  }
810  $this->ctrl->returnToParent($this);
811  }
812 
817  public function deleteObject(bool $error = false): void
818  {
819  $ilCtrl = $this->ctrl;
820  $ru = new ilRepositoryTrashGUI($this);
821 
822  $arr_ref_ids = [];
823  //Delete via Manage (more than one)
824  if (isset($_POST["id"]) && is_array($_POST['id']) && count($_POST['id']) > 0) {
825  $arr_ref_ids = $_POST['id'];
826  } elseif (isset($_GET['item_ref_id']) && (int) $_GET['item_ref_id'] > 0) {
827  $arr_ref_ids = [(int) $_GET['item_ref_id']];
828  }
829 
830  if (!$ru->showDeleteConfirmation($arr_ref_ids, false)) {
831  $ilCtrl->returnToParent($this);
832  }
833  }
834 }
static getIconsCache()
Returns an array that maps from OrgUnit object IDs to its icon defined by the assigned OrgUnit type...
$_GET["client_id"]
Definition: webdav.php:30
confirmedDeleteObject()
confirmed deletion of org units -> org units are deleted immediately, without putting them to the tra...
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...
static _checkAccessSettings(int $ref_id)
Class ilLocalUserGUI.
Class ilOrgUnitUserAssignmentGUI.
Class ilOrgUnitPositionGUI.
setSubTabsSettings(string $active_tab_id)
static _checkAccessExport(int $ref_id)
static _checkAccessAdministrateUsers(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: class.ilLog.php:30
Class ilOrgUnitSimpleImportGUI.
initAdvancedSettingsForm()
Initialize the form for editing advanced meta data.
Class ilOrgUnitExportGUI.
afterSave(ilObject $new_object)
$path
Definition: ltiservices.php:29
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
pasteObject()
paste object from clipboard to current place Depending on the chosen command the object(s) are linked...
setFormAction(string $a_formaction)
addStandardContainerSubTabs(bool $a_include_view=true)
Add standard container subtabs for view, manage, oderdering and text/media editor link...
addAdminLocatorItems(bool $do_not_add_object=false)
updateAdvancedSettings()
Update Advanced Metadata.
ilAccessHandler $ilAccess
global $DIC
Definition: shib_login.php:22
setTitleAndDescription()
called by prepare output
Repository GUI Utilities.
deleteObject(bool $error=false)
Display deletion confirmation screen for Org Units.
Class ilObjForumAdministration.
cancelMoveLinkObject()
Cancel move|link empty clipboard and return to parent.
Class ilOrgUnitTypeGUI.
editAdvancedSettings()
Edit Advanced Metadata.
static removeObjectsFromSystem(array $a_ref_ids, bool $a_from_recovery_folder=false)
remove objects from trash bin and all entries therefore every object needs a specific deleteObject() ...
addCommandButton(string $a_cmd, string $a_text, string $a_id="")
ilErrorHandling $error
static _checkAccessStaff(int $ref_id)
static _goto(string $ref_id)
static getRootOrgRefId()
ilPropertyFormGUI $form
static redirect(string $a_script)
performPaste()
Prepare $_POST for the generic method performPasteIntoMultipleObjectsObject
static _checkAccessToUserLearningProgress(int $ref_id, int $usr_id)
Render add new item selector.
Explorer class that works on tree objects (Services/Tree)
__construct(Container $dic, ilPlugin $plugin)
getReturnLocation(string $cmd, string $default_location="")
Get return location for command (command is method name without "Object", e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setInfoObject(ilInfoScreenGUI $info)
get info sections
ILIAS Container InternalGUIService $gui
ILIAS DI LoggingServices $ilLog
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
$dic
Definition: result.php:31
$message
Definition: xapiexit.php:31
redirectToRefId(int $ref_id, string $cmd="")
static _getFrame(string $a_class)
Class ilObjUserGUI.
static _lookupType(int $id, bool $reference=false)
buildGroup(string $create_target_class, array $obj_types_in_group, string $title, array $subtypes)
Class ilObjUserTrackingGUI.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
GUI class for object translation handling.
getTreeSelectorGUI(string $cmd)