ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFolderGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
36 {
37  protected ilHelpGUI $help;
40 
41  public function __construct(
42  $a_data,
43  int $a_id = 0,
44  bool $a_call_by_reference = true,
45  bool $a_prepare_output = false
46  ) {
47  global $DIC;
48 
49  $this->tree = $DIC->repositoryTree();
50  $this->tabs = $DIC->tabs();
51  $this->user = $DIC->user();
52  $this->ctrl = $DIC->ctrl();
53  $this->lng = $DIC->language();
54  $this->access = $DIC->access();
55  $this->rbacsystem = $DIC->rbac()->system();
56  $this->help = $DIC["ilHelp"];
57  $this->error = $DIC["ilErr"];
58  $this->tpl = $DIC["tpl"];
59  $this->settings = $DIC->settings();
60  $this->type = "fold";
61  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
62  $this->lng->loadLanguageModule("obj");
63  $this->folder_request = $DIC
64  ->folder()
65  ->internal()
66  ->gui()
67  ->standardRequest();
68  }
69 
70 
71  public function viewObject(): void
72  {
73  $this->checkPermission('read');
74  if (strtolower($this->folder_request->getBaseClass()) === "iladministrationgui") {
75  parent::viewObject();
76  return;
77  }
78 
79  // Trac access - see ilObjCourseGUI
81  $GLOBALS["ilUser"]->getId(),
82  $this->object->getId(),
83  $this->object->getRefId(),
84  'fold'
85  );
86 
87  $this->renderObject();
88  $this->tabs_gui->setTabActive('view_content');
89  }
90 
91  public function renderObject(): void
92  {
93  $ilTabs = $this->tabs;
94 
95  $this->checkPermission('read');
96 
97  $ilTabs->activateTab("view_content");
98  parent::renderObject();
99  }
100 
101  public function executeCommand(): void
102  {
103  $ilUser = $this->user;
104  $next_class = $this->ctrl->getNextClass($this);
105  $cmd = $this->ctrl->getCmd();
106 
107  $header_action = true;
108  switch ($next_class) {
109  case strtolower(ilRepositoryTrashGUI::class):
110  $ru = new ilRepositoryTrashGUI($this);
111  $this->ctrl->setReturn($this, 'trash');
112  $this->ctrl->forwardCommand($ru);
113  break;
114 
115  case 'ilpermissiongui':
116  $this->prepareOutput();
117  $this->tabs_gui->activateTab('perm_settings');
118  $perm_gui = new ilPermissionGUI($this);
119  $ret = $this->ctrl->forwardCommand($perm_gui);
120  break;
121 
122 
123  case 'ilcoursecontentgui':
124  $this->prepareOutput();
125  $course_content_obj = new ilCourseContentGUI($this);
126  $this->ctrl->forwardCommand($course_content_obj);
127  break;
128 
129  case "illearningprogressgui":
130  $this->prepareOutput();
131 
132  $new_gui = new ilLearningProgressGUI(
134  $this->object->getRefId(),
135  $this->folder_request->getUserId() ?: $ilUser->getId()
136  );
137  $this->ctrl->forwardCommand($new_gui);
138  $this->tabs_gui->setTabActive('learning_progress');
139  break;
140 
141  // container page editing
142  case "ilcontainerpagegui":
143  $this->prepareOutput(false);
144  $ret = $this->forwardToPageObject();
145  if ($ret !== "") {
146  $this->tpl->setContent($ret);
147  }
148  $header_action = false;
149  break;
150 
151  case 'ilinfoscreengui':
152  $this->prepareOutput();
153  $this->infoScreen();
154  break;
155 
156  case 'ilobjectcopygui':
157  $this->prepareOutput();
158 
159  $cp = new ilObjectCopyGUI($this);
160  $cp->setType('fold');
161  $this->ctrl->forwardCommand($cp);
162  break;
163 
164  case "ilobjectcontentstylesettingsgui":
165  $this->checkPermission("write");
166  $this->setTitleAndDescription();
167  $this->showContainerPageTabs();
168  $settings_gui = $this->content_style_gui
169  ->objectSettingsGUIForRefId(
170  null,
171  $this->object->getRefId()
172  );
173  $this->ctrl->forwardCommand($settings_gui);
174  break;
175 
176  case 'ilexportgui':
177  $this->prepareOutput();
178 
179  $this->tabs_gui->setTabActive('export');
180  $exp = new ilExportGUI($this);
181  $exp->addFormat('xml');
182  $this->ctrl->forwardCommand($exp);
183  break;
184 
185  case "ilcommonactiondispatchergui":
186  $this->prepareOutput();
188  $this->ctrl->forwardCommand($gui);
189  break;
190 
191  case 'ildidactictemplategui':
192  $this->ctrl->setReturn($this, 'edit');
193  $did = new ilDidacticTemplateGUI($this);
194  $this->ctrl->forwardCommand($did);
195  break;
196  case 'ilcolumngui':
197  $this->tabs_gui->setTabActive('none');
198  $this->checkPermission("read");
199  $this->viewObject();
200  break;
201 
202  case 'ilobjecttranslationgui':
203  $this->checkPermissionBool("write");
204  $this->prepareOutput();
205  $this->setSubTabs("settings_trans");
206  $transgui = new ilObjectTranslationGUI($this);
207  $this->ctrl->forwardCommand($transgui);
208  break;
209 
210  default:
211 
212  $this->prepareOutput();
213  // cognos-blu-patch: begin
214  // removed timings forward
215  // cognos-blu-patch: end
216 
217  if (empty($cmd)) {
218  $cmd = "view";
219  }
220  $cmd .= "Object";
221  $this->$cmd();
222  break;
223  }
224 
225  if ($header_action) {
226  $this->addHeaderAction();
227  }
228  }
229 
230  public function setFolderTree(ilTree $a_tree): void
231  {
232  $this->folder_tree = $a_tree;
233  }
234 
235  protected function initEditForm(): ilPropertyFormGUI
236  {
237  $lng = $this->lng;
238  $obj_service = $this->getObjectService();
239 
240  $lng->loadLanguageModule($this->object->getType());
241 
242  $form = new ilPropertyFormGUI();
243  $form->setFormAction($this->ctrl->getFormAction($this, "update"));
244  $form->setTitle($this->lng->txt($this->object->getType() . "_edit"));
245 
246  // title
247  $ti = new ilTextInputGUI($this->lng->txt("title"), "title");
248  $ti->setSize(min(40, ilObject::TITLE_LENGTH));
249  $ti->setMaxLength(ilObject::TITLE_LENGTH);
250  $ti->setRequired(true);
251  $form->addItem($ti);
252 
253  // description
254  $ta = new ilTextAreaInputGUI($this->lng->txt("description"), "desc");
255  $ta->setCols(40);
256  $ta->setRows(2);
257  $form->addItem($ta);
258 
259  // Show didactic template type
260  $this->initDidacticTemplate($form);
261 
262  $pres = new ilFormSectionHeaderGUI();
263  $pres->setTitle($this->lng->txt('fold_presentation'));
264  $form->addItem($pres);
265 
266  // title and icon visibility
267  $form = $obj_service->commonSettings()->legacyForm($form, $this->object)->addTitleIconVisibility();
268 
269  // top actions visibility
270  $form = $obj_service->commonSettings()->legacyForm($form, $this->object)->addTopActionsVisibility();
271 
272  // custom icon
273  $form = $obj_service->commonSettings()->legacyForm($form, $this->object)->addIcon();
274 
275  // tile image
276  $form = $obj_service->commonSettings()->legacyForm($form, $this->object)->addTileImage();
277 
278  // list presentation
280 
281  $this->initSortingForm(
282  $form,
283  [
288  ]
289  );
290 
291  $form->addCommandButton("update", $this->lng->txt("save"));
292  //$this->form->addCommandButton("cancelUpdate", $lng->txt("cancel"));
293 
294  return $form;
295  }
296 
297  protected function getEditFormCustomValues(array &$a_values): void
298  {
299  // we cannot use $this->object->getOrderType()
300  // if set to inherit it will be translated to parent setting
301  $sort = new ilContainerSortingSettings($this->object->getId());
302  $a_values["sor"] = $sort->getSortMode();
303  }
304 
305  protected function updateCustom(ilPropertyFormGUI $form): void
306  {
307  $obj_service = $this->getObjectService();
308 
309  // title icon visibility
310  $obj_service->commonSettings()->legacyForm($form, $this->object)->saveTitleIconVisibility();
311 
312  // top actions visibility
313  $obj_service->commonSettings()->legacyForm($form, $this->object)->saveTopActionsVisibility();
314 
315  // custom icon
316  $obj_service->commonSettings()->legacyForm($form, $this->object)->saveIcon();
317 
318  // tile image
319  $obj_service->commonSettings()->legacyForm($form, $this->object)->saveTileImage();
320 
321  // list presentation
322  $this->saveListPresentation($form);
323 
324  $this->saveSortingSettings($form);
325  }
326 
332  public function showSummaryObject(): void
333  {
334  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
335  }
336 
337  protected function afterSave(ilObject $new_object): void
338  {
339  $sort = new ilContainerSortingSettings($new_object->getId());
341  $sort->update();
342 
343  // always send a message
344  $this->tpl->setOnScreenMessage('success', $this->lng->txt("fold_added"), true);
345  $this->ctrl->setParameter($this, "ref_id", $new_object->getRefId());
346  $this->redirectToRefId($new_object->getRefId(), "");
347  }
348 
354  public function infoScreenObject(): void
355  {
356  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
357  }
358 
362  public function infoScreen(): void
363  {
364  $ilAccess = $this->access;
365 
366  if (!$ilAccess->checkAccess("visible", "", $this->ref_id)) {
367  throw new ilPermissionException($this->lng->txt("msg_no_perm_read"));
368  }
369 
370  $info = new ilInfoScreenGUI($this);
371 
372  $GLOBALS['ilTabs']->activateTab('info_short');
373 
374  $info->enablePrivateNotes();
375 
376  if ($ilAccess->checkAccess("read", "", $this->requested_ref_id)) {
377  $info->enableNews();
378  }
379 
380  // no news editing for files, just notifications
381  $info->enableNewsEditing(false);
382  if ($ilAccess->checkAccess("write", "", $this->requested_ref_id)) {
383  $news_set = new ilSetting("news");
384  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
385 
386  if ($enable_internal_rss) {
387  $info->setBlockProperty("news", "settings", '1');
388  $info->setBlockProperty("news", "public_notifications_option", '1');
389  }
390  }
391 
392 
393  // standard meta data
394  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
395 
396  // forward the command
397  $this->ctrl->forwardCommand($info);
398  }
399 
400  protected function getTabs(): void
401  {
403  $lng = $this->lng;
404  $ilCtrl = $this->ctrl;
405  $ilAccess = $this->access;
406  $ilHelp = $this->help;
407 
408  $this->ctrl->setParameter($this, "ref_id", $this->ref_id);
409 
410  $ilHelp->setScreenIdComponent("fold");
411 
412  $this->tabs_gui->setTabActive("");
413  if ($ilAccess->checkAccess('read', '', $this->ref_id)) {
414  $this->tabs_gui->addTab(
415  "view_content",
416  $lng->txt("content"),
417  $this->ctrl->getLinkTarget($this, "")
418  );
419 
420  //BEGIN ChangeEvent add info tab to category object
421  $force_active = $this->ctrl->getNextClass() === "ilinfoscreengui"
422  || strtolower($this->ctrl->getCmdClass()) === "ilnotegui";
423  $this->tabs_gui->addTarget(
424  "info_short",
425  $this->ctrl->getLinkTargetByClass(
426  ["ilobjfoldergui", "ilinfoscreengui"],
427  "showSummary"
428  ),
429  ["showSummary", "", "infoScreen"],
430  "",
431  "",
432  $force_active
433  );
434  //END ChangeEvent add info tab to category object
435  }
436 
437  if ($rbacsystem->checkAccess('write', $this->ref_id)) {
438  $this->tabs_gui->addTarget(
439  "settings",
440  $this->ctrl->getLinkTarget($this, "edit"),
441  "edit",
442  "",
443  "",
444  ($ilCtrl->getCmd() === "edit")
445  );
446  }
447 
448  // learning progress
449  if (ilLearningProgressAccess::checkAccess($this->object->getRefId())) {
450  $this->tabs_gui->addTarget(
451  'learning_progress',
452  $this->ctrl->getLinkTargetByClass(['ilobjfoldergui', 'illearningprogressgui'], ''),
453  '',
454  ['illplistofobjectsgui', 'illplistofsettingsgui', 'illearningprogressgui', 'illplistofprogressgui']
455  );
456  }
457 
458  if ($ilAccess->checkAccess('write', '', $this->object->getRefId())) {
459  $this->tabs_gui->addTarget(
460  'export',
461  $this->ctrl->getLinkTargetByClass('ilexportgui', ''),
462  'export',
463  'ilexportgui'
464  );
465  }
466 
467 
468  if ($rbacsystem->checkAccess('edit_permission', $this->ref_id)) {
469  $this->tabs_gui->addTarget(
470  "perm_settings",
471  $this->ctrl->getLinkTargetByClass([get_class($this), 'ilpermissiongui'], "perm"),
472  ["perm", "info", "owner"],
473  'ilpermissiongui'
474  );
475  }
476  }
477 
481  public static function _goto($a_target): void
482  {
483  global $DIC;
484 
485  $ilAccess = $DIC->access();
486  $ilErr = $DIC["ilErr"];
487  $lng = $DIC->language();
488 
489  $a_target = (int) $a_target;
490 
491  if ($ilAccess->checkAccess("read", "", $a_target)) {
493  }
494  if ($ilAccess->checkAccess("visible", "", $a_target)) {
495  ilObjectGUI::_gotoRepositoryNode($a_target, "infoScreen");
496  }
497  $ilErr->raiseError($lng->txt("msg_no_perm_read"), $ilErr->FATAL);
498  }
499 
500  public function modifyItemGUI(ilObjectListGUI $a_item_list_gui, array $a_item_data): void
501  {
502  $tree = $this->tree;
503 
504  // if folder is in a course, modify item list gui according to course requirements
505  if ($course_ref_id = $tree->checkForParentType($this->object->getRefId(), 'crs')) {
506  $course_obj_id = ilObject::_lookupObjId($course_ref_id);
508  $a_item_list_gui,
509  'ilcoursecontentgui',
510  $a_item_data,
511  ilObjCourse::_lookupAboStatus($course_obj_id),
512  $course_ref_id,
513  $course_obj_id,
514  $this->object->getRefId()
515  );
516  }
517  }
518 
522  protected function showPossibleSubObjects(): void
523  {
526  $this->getCreatableObjectTypes()
527  )
528  );
529  $gui->render();
530  }
531 
532 
533  protected function forwardToTimingsView(): void
534  {
535  $tree = $this->tree;
536 
537  if (!$crs_ref = $tree->checkForParentType($this->ref_id, 'crs')) {
538  return;
539  }
540  if (!$this->ctrl->getCmd() && ilObjCourse::_lookupViewMode(ilObject::_lookupObjId($crs_ref)) === ilContainer::VIEW_TIMING) {
541  if (!ilSession::has('crs_timings')) {
542  ilSession::set('crs_timings', true);
543  }
544 
545  if (ilSession::get('crs_timings')) {
546  $this->ctrl->redirectByClass(ilCourseContentGUI::class, 'editUserTimings');
547  return;
548  }
549  }
550  ilSession::set('crs_timings', false);
551  }
552 
553  public function editObject(): void
554  {
555  $ilTabs = $this->tabs;
557 
558  $this->setSubTabs("settings");
559  $ilTabs->activateTab("settings");
560 
561  if (!$this->checkPermissionBool("write")) {
562  $ilErr->raiseError($this->lng->txt("msg_no_perm_write"), $ilErr->MESSAGE);
563  }
564 
565  $form = $this->initEditForm();
566  $values = $this->getEditFormValues();
567  if ($values) {
568  $form->setValuesByArray($values, true);
569  }
570  $GLOBALS['tpl']->setContent($form->getHTML());
571  }
572 
573  public function setSubTabs(string $a_tab): void
574  {
575  $ilTabs = $this->tabs;
576  $lng = $this->lng;
577 
578  $ilTabs->addSubTab(
579  "settings",
580  $lng->txt("fold_settings"),
581  $this->ctrl->getLinkTarget($this, 'edit')
582  );
583 
584  $this->tabs_gui->addSubTab(
585  "settings_trans",
586  $this->lng->txt("obj_multilinguality"),
587  $this->ctrl->getLinkTargetByClass("ilobjecttranslationgui", "")
588  );
589 
590  $ilTabs->activateSubTab($a_tab);
591  $ilTabs->activateTab("settings");
592  }
593 
594  public function deleteObject(bool $error = false): void
595  {
596  $this->tabs_gui->activateTab('view_content');
597  parent::deleteObject($error);
598  }
599 }
static get(string $a_var)
ilRbacSystem $rbacsystem
StandardGUIRequest $folder_request
Class ilObjFolderGUI.
afterSave(ilObject $new_object)
showPossibleSubObjects()
show possible sub objects selection list
saveSortingSettings(ilPropertyFormGUI $form)
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...
GUI class for the workflow of copying objects.
const TITLE_LENGTH
prepareOutput(bool $show_sub_objects=true)
setFolderTree(ilTree $a_tree)
Help GUI class.
redirectToRefId(int $ref_id, string $cmd="")
redirects to (repository) view per ref id usually to a container and usually used at the end of a sav...
showSummaryObject()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
static _gotoRepositoryNode(int $ref_id, string $cmd="")
loadLanguageModule(string $a_module)
Load language module.
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
$ilErr
Definition: raiseError.php:33
static _lookupViewMode(int $a_id)
static _lookupObjId(int $ref_id)
static _tracProgress(int $a_user_id, int $a_obj_id, int $a_ref_id, string $a_obj_type='')
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setSubTabs(string $a_tab)
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
ilLanguage $lng
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkForParentType(int $a_ref_id, string $a_type, bool $a_exclude_source_check=false)
Check for parent type e.g check if a folder (ref_id 3) is in a parent course obj => checkForParentTyp...
$GLOBALS["DIC"]
Definition: wac.php:53
modifyItemGUI(ilObjectListGUI $a_item_list_gui, array $a_item_data)
setFormAction(string $a_formaction)
initDidacticTemplate(ilPropertyFormGUI $form)
global $DIC
Definition: shib_login.php:22
Repository GUI Utilities.
static has($a_var)
static _modifyItemGUI(ilObjectListGUI $a_item_list_gui, string $a_cmd_class, array $a_item_data, bool $a_abo_status, int $a_course_ref_id, int $a_course_obj_id, int $a_parent_ref_id=0)
setValuesByArray(array $a_values, bool $a_restrict_to_value_keys=false)
addCommandButton(string $a_cmd, string $a_text, string $a_id="")
ilErrorHandling $error
saveListPresentation(ilPropertyFormGUI $form)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
ilPropertyFormGUI $form
buildAddNewItemElements(array $subtypes, string $create_target_class=ilRepositoryGUI::class, ?int $redirect_target_ref_id=null,)
updateCustom(ilPropertyFormGUI $form)
Render add new item selector.
infoScreenObject()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
initListPresentationForm(ilPropertyFormGUI $form)
Add list presentation settings to form.
initSortingForm(ilPropertyFormGUI $form, array $a_sorting_settings)
Append sorting settings to property form.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
ilAccessHandler $access
Class ilCourseContentGUI.
getEditFormCustomValues(array &$a_values)
__construct( $a_data, int $a_id=0, bool $a_call_by_reference=true, bool $a_prepare_output=false)
ILIAS Container InternalGUIService $gui
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
static _lookupAboStatus(int $a_id)
static _goto($a_target)
goto target group
addHeaderAction()
Add header action menu.
deleteObject(bool $error=false)
Class ilObjUserTrackingGUI.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static set(string $a_var, $a_val)
Set a value.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
GUI class for object translation handling.