ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjLearningSequenceGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Data;
23 
54 {
55  public const CMD_VIEW = "view";
56  public const CMD_LEARNER_VIEW = "learnerView";
57  public const CMD_CONTENT = "manageContent";
58 
59  public const CMD_MEMBERS = "members";
60  public const CMD_MANAGE_MEMBERS = "participants";
61  public const CMD_MEMBERS_GALLERY = "jump2UsersGallery";
62 
63  public const CMD_INFO = "showSummary";
64  public const CMD_INFO_SCREEN = "infoScreen";
65  public const CMD_SETTINGS = "settings";
66  public const CMD_PERMISSIONS = "perm";
67  public const CMD_EXPORT = "export";
68  public const CMD_IMPORT = "routeImportCmd";
69  public const CMD_CREATE = "create";
70  public const CMD_SAVE = "save";
71  public const CMD_CANCEL = "cancel";
72  public const CMD_UNPARTICIPATE = "unparticipate";
73  public const CMD_ADD_TO_DESK = "addToDesk";
74  public const CMD_REMOVE_FROM_DESK = "removeFromDesk";
75  public const CMD_LINK = "link";
76  public const CMD_CANCEL_LINK = "cancelMoveLink";
77  public const CMD_CUT = "cut";
78  public const CMD_CANCEL_CUT = "cancelCut";
79  public const CMD_CUT_SHOWTREE = "showPasteTree";
80  public const CMD_CUT_CLIPBOARD = "keepObjectsInClipboard";
81  public const CMD_DELETE = "delete";
82  public const CMD_CANCEL_DELETE = "cancelDelete";
83  public const CMD_DELETE_CONFIRMED = "confirmedDelete";
84  public const CMD_PERFORM_PASTE = 'performPasteIntoMultipleObjects';
85  public const CMD_SHOW_TRASH = 'trash';
86  public const CMD_UNDELETE = 'undelete';
87  public const CMD_REDRAW_HEADER = 'redrawHeaderAction';
88  public const CMD_ENABLE_ADMINISTRATION_PANEL = "enableAdministrationPanel";
89 
90  public const TAB_VIEW_CONTENT = "view";
91  public const TAB_MANAGE = "manage";
92  public const TAB_CONTENT_MAIN = "manage_content_maintab";
93  public const TAB_INFO = "show_summary";
94  public const TAB_SETTINGS = "settings";
95  public const TAB_PERMISSIONS = "perm_settings";
96  public const TAB_MEMBERS = "members";
97  public const TAB_LP = "learning_progress";
98  public const TAB_EXPORT = "export";
99 
100  public const TAB_EDIT_INTRO = "edit_intropage";
101  public const TAB_EDIT_EXTRO = "edit_extropage";
102 
103 
104  public const MAIL_ALLOWED_ALL = 1;
105  public const MAIL_ALLOWED_TUTORS = 2;
106 
107  public const ACCESS_READ = 'read';
108  public const ACCESS_VISIBLE = 'visible';
109  protected \ILIAS\Style\Content\Service $content_style;
110 
114  protected ilHelpGUI $help;
117  protected Data\Factory $data_factory;
122 
123  public static function _goto(string $target): void
124  {
125  global $DIC;
126  $main_tpl = $DIC->ui()->mainTemplate();
127 
128  $request = $DIC->http()->request();
129  $lng = $DIC->language();
130  $err = $DIC['ilErr'];
131 
132  $targetParameters = explode('_', $target);
133  $id = (int) $targetParameters[0];
134 
135  if (!self::isAccessible($id)) {
136  $err->raiseError($lng->txt('msg_no_perm_read'), $err->FATAL);
137  }
138 
139  if (self::hasAccess(self::ACCESS_READ, $id)) {
140  $params = ['ref_id' => $id];
141 
142  if (isset($request->getQueryParams()['gotolp'])) {
143  $params['gotolp'] = 1;
144  }
145 
146  self::forwardByClass(
147  ilRepositoryGUI::class,
148  [ilObjLearningSequenceGUI::class],
149  $params
150  );
151  }
152 
153  if (self::hasAccess(self::ACCESS_VISIBLE, $id)) {
154  ilObjectGUI::_gotoRepositoryNode($id, 'infoScreen');
155  }
156 
157  if (self::hasAccess(self::ACCESS_READ, ROOT_FOLDER_ID)) {
158  $main_tpl->setOnScreenMessage('info', sprintf(
159  $lng->txt('msg_no_perm_read_item'),
161  ), true);
162 
163  self::forwardByClass(ilRepositoryGUI::class, [ilRepositoryGUI::class], ['ref_id' => ROOT_FOLDER_ID]);
164  }
165  }
166 
167  protected static function isAccessible(int $id): bool
168  {
169  return $id > 0 && (
170  self::hasAccess(self::ACCESS_READ, $id) ||
171  self::hasAccess(self::ACCESS_VISIBLE, $id) ||
172  self::hasAccess(self::ACCESS_READ, ROOT_FOLDER_ID)
173  );
174  }
175 
176  protected static function hasAccess(string $mode, int $id): bool
177  {
178  global $DIC;
179  return $DIC->access()->checkAccess($mode, '', $id);
180  }
181 
182  protected static function forwardByClass(string $base_class, array $classes, array $params, string $cmd = ''): void
183  {
184  global $DIC;
185  $ctrl = $DIC->ctrl();
186  $target_class = end($classes);
187 
188  $ctrl->setTargetScript('ilias.php');
189  foreach ($params as $key => $value) {
190  $ctrl->setParameterByClass($target_class, $key, $value);
191  }
192 
193  // insert the baseclass to the first position.
194  array_splice($classes, 0, 0, $base_class);
195  $ctrl->redirectByClass($classes, $cmd);
196  }
197 
198  public function __construct()
199  {
200  $this->type = ilObjLearningSequence::OBJ_TYPE;
201 
202  global $DIC;
203  $this->ctrl = $DIC['ilCtrl'];
204  $this->lng = $DIC['lng'];
205  $this->user = $DIC['ilUser'];
206  $this->tabs = $DIC['ilTabs'];
207  $this->toolbar = $DIC['ilToolbar'];
208  $this->help = $DIC['ilHelp'];
209  $this->settings = $DIC['ilSetting'];
210  $this->access = $DIC['ilAccess'];
211  $this->rbac_review = $DIC['rbacreview'];
212  $this->ui_factory = $DIC['ui.factory'];
213  $this->ui_renderer = $DIC['ui.renderer'];
214  $this->request = $DIC->http()->request();
215 
216  $this->log = $DIC["ilLoggerFactory"]->getRootLogger();
217  $this->app_event_handler = $DIC['ilAppEventHandler'];
218  $this->navigation_history = $DIC['ilNavigationHistory'];
219  $this->obj_definition = $DIC['objDefinition'];
220  $this->tpl = $DIC["tpl"];
221  $this->obj_service = $DIC->object();
222  $this->toolbar = $DIC['ilToolbar'];
223  $this->request_wrapper = $DIC->http()->wrapper()->query();
224  $this->post_wrapper = $DIC->http()->wrapper()->post();
225  $this->refinery = $DIC->refinery();
226  $this->content_style = $DIC->contentStyle();
227 
228  $this->help->setScreenIdComponent($this->type);
229  $this->lng->loadLanguageModule($this->type);
230 
231  $this->data_factory = new Data\Factory();
232 
233  $this->ref_id = $this->request_wrapper->retrieve("ref_id", $this->refinery->kindlyTo()->int());
234  parent::__construct([], $this->ref_id, true, false);
235  }
236 
237  protected function recordLearningSequenceRead(): void
238  {
240  $this->object->getType(),
241  $this->object->getRefId(),
242  $this->object->getId(),
243  $this->user->getId()
244  );
245  }
246 
247  public function executeCommand(): void
248  {
249  $next_class = $this->ctrl->getNextClass($this);
250  $cmd = $this->ctrl->getCmd();
251  $tpl = $this->tpl;
252 
253  parent::prepareOutput();
254  $this->addToNavigationHistory();
255  //showRepTree is from containerGUI;
256  //LSO will attach allowed subitems to ok-list
257  //see: $this::getAdditionalOKTypes
258 
259  $in_player = (
260  $next_class === 'ilobjlearningsequencelearnergui'
261  && $cmd === 'view'
262  );
263 
264  $tpl->setPermanentLink("lso", $this->ref_id);
265 
266  switch ($next_class) {
267  case "ilcommonactiondispatchergui":
269  $this->ctrl->forwardCommand($gui);
270  break;
271  case "ilinfoscreengui":
272  $this->tabs->setTabActive(self::TAB_INFO);
273  $this->ctrl->forwardCommand($this->getGUIInfo());
274  break;
275  case "ilpermissiongui":
276  $this->tabs->setTabActive(self::TAB_PERMISSIONS);
277  $this->ctrl->forwardCommand($this->getGUIPermissions());
278  break;
279  case "ilobjlearningsequencesettingsgui":
280 
281  if (!$this->checkAccess("write", '', $this->ref_id)) {
282  $this->tpl->setOnScreenMessage('failure', sprintf(
283  $this->lng->txt('msg_no_perm_read_item'),
284  $this->object->getTitle()
285  ), true);
286 
287  $this->ctrl->redirect($this, 'view');
288  }
289 
290  $this->tabs->activateTab(self::TAB_SETTINGS);
291  $this->ctrl->forwardCommand($this->getGUISettings());
292  break;
293  case "ilobjlearningsequencecontentgui":
294 
295  if (!$this->checkAccess("read", '', $this->ref_id)) {
296  $this->tpl->setOnScreenMessage('failure', sprintf(
297  $this->lng->txt('msg_no_perm_read_item'),
298  $this->object->getTitle()
299  ), true);
300 
301  $this->ctrl->redirect($this, 'view');
302  }
303 
304 
305  $this->tabs->activateTab(self::TAB_CONTENT_MAIN);
306  $this->addSubTabsForContent(self::TAB_MANAGE);
307  $this->ctrl->forwardCommand($this->getGUIManageContent());
308  break;
309  case "ilobjlearningsequencelearnergui":
310  $this->addContentStyleCss();
311  $this->tabs->activateTab(self::TAB_CONTENT_MAIN);
312  $this->addSubTabsForContent(self::TAB_VIEW_CONTENT);
313  $this->ctrl->forwardCommand($this->getGUILearnerView());
314  break;
315  case "illearningsequencemembershipgui":
316  $this->tabs->setTabActive(self::TAB_MEMBERS);
317  $this->ctrl->forwardCommand($this->getGUIMembers());
318  break;
319  case 'illearningprogressgui':
320  $this->tabs->setTabActive(self::TAB_LP);
321  $this->ctrl->forwardCommand($this->getGUILearningProgress());
322  break;
323  case 'ilexportgui':
324  $gui = new ilExportGUI($this);
325  $gui->addFormat("xml");
326  $this->tabs->setTabActive(self::TAB_EXPORT);
327  $this->ctrl->forwardCommand($gui);
328  break;
329  case 'ilobjectcopygui':
330  $gui = new ilObjectCopyGUI($this);
331  $gui->setType('lso');
332  $this->ctrl->forwardCommand($gui);
333  break;
334  case 'ilobjindividualassessmentgui':
335  $struct = ['ilrepositorygui', 'ilobjindividualassessmentgui'];
336  if ($cmd === 'edit') {
337  $struct[] = 'ilindividualassessmentsettingsgui';
338  }
339  $this->ctrl->redirectByClass($struct, $cmd);
340  // no break
341  case 'ilobjtestgui':
342  $struct = ['ilrepositorygui', 'ilobjtestgui'];
343  $this->ctrl->redirectByClass($struct, $cmd);
344  // no break
345  case 'ilobjlearningsequencelppollinggui':
346  $gui = $this->object->getLocalDI()["gui.learner.lp"];
347  $this->ctrl->forwardCommand($gui);
348  break;
349  case "ilobjlearningsequenceeditintrogui":
350  $which_page = LSOPageType::INTRO;
351  $which_tab = self::TAB_EDIT_INTRO;
352  $gui_class = 'ilObjLearningSequenceEditIntroGUI';
353  // no break
354  case "ilobjlearningsequenceeditextrogui":
355  if (!isset($which_page)) {
356  $which_page = LSOPageType::EXTRO;
357  $which_tab = self::TAB_EDIT_EXTRO;
358  $gui_class = 'ilObjLearningSequenceEditExtroGUI';
359  }
360 
361  $this->addContentStyleCss();
362  $this->addSubTabsForContent($which_tab);
363 
364  if (!$this->object->hasContentPage($which_page)) {
365  $this->object->createContentPage($which_page);
366  }
367 
368  $gui = new $gui_class(
369  $which_page->value,
370  $this->object->getContentPageId()
371  );
372  $out = $this->ctrl->forwardCommand($gui);
373 
374  //editor's guis will write to template, but not return
375  //e.g. see ilPCTabsGUI::insert
376  if (!is_null($out)) {
377  $tpl->setContent($out);
378  }
379  break;
380 
381  case false:
382  if ($cmd === '') {
383  if ($this->checkAccess("write")) {
384  $cmd = self::CMD_CONTENT;
385  } else {
386  $cmd = self::CMD_VIEW;
387  }
388  }
389 
390  switch ($cmd) {
391  case self::CMD_IMPORT:
392  $this->routeImportCmdObject();
393  break;
394  case self::CMD_VIEW:
395  case self::CMD_LEARNER_VIEW:
396  $this->view();
397  // no break
398  case self::CMD_INFO:
399  case self::CMD_INFO_SCREEN:
400  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, 'showSummary');
401  // no break
402  case self::CMD_SETTINGS:
403  $this->ctrl->redirectByClass(ilObjLearningSequenceSettingsGUI::class, $cmd);
404  // no break
405  case self::CMD_CONTENT:
406  $this->ctrl->redirectByClass(ilObjLearningSequenceContentGUI::class, $cmd);
407  // no break
408  case self::CMD_MEMBERS:
409  case self::CMD_MEMBERS_GALLERY:
410  $this->ctrl->redirectByClass(ilLearningSequenceMembershipGUI::class, $cmd);
411  // no break
412  case self::CMD_UNPARTICIPATE:
413  $this->unparticipate();
414  // no break
415  case self::CMD_CANCEL:
416  if ($this->getCreationMode()) {
417  $this->cancelCreation();
418  }
419  break;
420  case self::CMD_REMOVE_FROM_DESK:
421  $this->removeFromDeskObject();
422  $this->view();
423  break;
424  case self::CMD_ADD_TO_DESK:
425  $this->addToDeskObject();
426  $this->view();
427  break;
428  case self::CMD_CUT:
429  $this->cutObject();
430  break;
431  case self::CMD_CUT_SHOWTREE:
432  $this->showPasteTreeObject();
433  break;
434  case self::CMD_CUT_CLIPBOARD:
436  break;
437  case self::CMD_LINK:
438  $this->linkObject();
439  break;
440  case self::CMD_DELETE:
441  $this->deleteObject();
442  break;
443  case self::CMD_DELETE_CONFIRMED:
444  $this->confirmedDeleteObject();
445  break;
446  case self::CMD_PERFORM_PASTE:
448  break;
449  case self::CMD_SHOW_TRASH:
450  $this->trashObject();
451  break;
452  case self::CMD_UNDELETE:
453  $this->undeleteObject();
454  break;
455 
456  case self::CMD_CANCEL_CUT:
457  case self::CMD_CANCEL_DELETE:
458  case self::CMD_CANCEL_LINK:
459  $this->view();
460  break;
461 
462  case self::CMD_SAVE:
463  case self::CMD_CREATE:
464  $this->$cmd();
465  break;
466 
467  case self::CMD_REDRAW_HEADER:
468  $this->redrawHeaderActionObject();
469  break;
470 
471  // This is a temporary implementation (Mantis Ticket 36631)
472  case self::CMD_ENABLE_ADMINISTRATION_PANEL:
473  $tpl->setOnScreenMessage("failure", $this->lng->txt('lso_multidownload_not_available'), false);
474  $this->manageContent();
475  break;
476 
477  default:
478  throw new ilException("ilObjLearningSequenceGUI: Invalid command '$cmd'");
479  }
480  break;
481  default:
482  throw new ilException("ilObjLearningSequenceGUI: Can't forward to next class $next_class");
483  }
484 
485  if (!$in_player) {
486  $this->addHeaderAction();
487  }
488 
489  // This is the base class for the call, so we ought to print.
490  // TODO: This is super fishy and most probably hints on the fact, that
491  // something regarding that base class usage needs to change.
492  if (strtolower($this->request_wrapper->retrieve("baseClass", $this->refinery->kindlyTo()->string())) === strtolower(self::class)) {
493  $tpl->printToStdOut();
494  }
495  }
496 
497  public function addContentStyleCss(): void
498  {
499  $this->content_style->gui()->addCss(
500  $this->tpl,
501  $this->object->getRefId()
502  );
503  }
504 
505  public function addToNavigationHistory(): void
506  {
507  if (
508  !$this->getCreationMode() &&
509  $this->access->checkAccess('read', '', $this->ref_id)
510  ) {
511  $link = ilLink::_getLink($this->ref_id, $this->type);
512  $this->navigation_history->addItem($this->ref_id, $link, $this->type);
513  }
514  }
515 
516  protected function getGUIInfo(): ilInfoScreenGUI
517  {
518  return new ilInfoScreenGUI($this);
519  }
520 
521  protected function getGUIPermissions(): ilPermissionGUI
522  {
523  return new ilPermissionGUI($this);
524  }
525 
527  {
529  $this->getObject(),
530  $this->ctrl,
531  $this->lng,
532  $this->tpl,
533  $this->refinery,
534  $this->ui_factory,
535  $this->ui_renderer,
536  $this->request
537  );
538  }
539 
540  protected function view(): void
541  {
543  $this->tabs->clearSubTabs();
544 
545  $cmd = self::CMD_INFO;
546  if ($this->checkAccess("write")) {
547  $cmd = self::CMD_CONTENT;
548  $this->ctrl->redirectByClass(ilObjLearningSequenceContentGUI::class, $cmd);
549  } elseif ($this->checkAccess("read")) {
550  $cmd = self::CMD_LEARNER_VIEW;
551  $this->ctrl->redirectByClass(ilObjLearningSequenceLearnerGUI::class, $cmd);
552  }
553  }
554 
556  {
558  $this,
559  $this->ctrl,
560  $this->tpl,
561  $this->lng,
562  $this->access,
563  new ilConfirmationGUI(),
564  new LSItemOnlineStatus(),
565  $this->post_wrapper,
566  $this->refinery,
567  $this->ui_factory,
568  $this->ui_renderer
569  );
570  }
571 
573  {
574  return $this->object->getLocalDI()["gui.learner"];
575  }
576 
578  {
580  $this,
581  $this->getObject(),
582  $this->getTrackingObject(),
584  $this->rbac_review,
585  $this->settings,
586  $this->toolbar,
587  $this->request_wrapper,
588  $this->post_wrapper,
589  $this->refinery,
590  $this->ui_factory
591  );
592  }
593 
595  {
596  $for_user = $this->user->getId();
597  if ($this->request_wrapper->has("user_id")) {
598  $for_user = $this->request_wrapper->retrieve("user_id", $this->refinery->kindlyTo()->int());
599  }
600  return new ilLearningProgressGUI(
602  $this->getObject()->getRefId(),
603  $for_user
604  );
605  }
606 
608  {
609  return $form;
610  }
611 
612  protected function create(): void
613  {
614  parent::createObject();
615  }
616 
617  protected function save(): void
618  {
619  parent::saveObject();
620  }
621 
622  protected function afterSave(ilObject $new_object): void
623  {
624  $participant = new ilLearningSequenceParticipants(
625  $new_object->getId(),
626  $this->log,
629  );
630 
631  $participant->add($this->user->getId(), ilParticipants::IL_LSO_ADMIN);
632  $participant->updateNotification(
633  $this->user->getId(),
634  (bool) $this->settings->get('mail_lso_admin_notification', "1")
635  );
636 
637  $settings = new ilContainerSortingSettings($new_object->getId());
638  $settings->setSortMode(ilContainer::SORT_MANUAL);
639  $settings->setSortDirection(ilContainer::SORT_DIRECTION_ASC);
641  $settings->setSortNewItemsPosition(ilContainer::SORT_NEW_ITEMS_POSITION_BOTTOM);
642  $settings->save();
643 
644  $this->tpl->setOnScreenMessage('success', $this->lng->txt('object_added'), true);
645  $this->ctrl->setParameter($this, "ref_id", $new_object->getRefId());
647  $this->getReturnLocation(
648  "save",
649  $this->ctrl->getLinkTarget($this, self::CMD_SETTINGS, "", false, false)
650  )
651  );
652  }
653 
654  public function unparticipate(): void
655  {
656  if ($this->checkAccess('unparticipate')) {
657  $usr_id = $this->user->getId();
658  $this->getObject()->getLSRoles()->leave($usr_id);
659  }
660  $this->ctrl->redirectByClass('ilObjLearningSequenceLearnerGUI', self::CMD_LEARNER_VIEW);
661  }
662 
663  protected function getTabs(): void
664  {
665  if ($this->checkAccess("read")) {
666  $cmd = $this->checkAccess("write") ? self::CMD_CONTENT : self::CMD_VIEW;
667  $this->tabs->addTab(
668  self::TAB_CONTENT_MAIN,
669  $this->lng->txt(self::TAB_CONTENT_MAIN),
670  $this->ctrl->getLinkTarget($this, $cmd, "", false, false)
671  );
672  }
673 
674  if ($this->checkAccess("read") || $this->checkAccess("visible")) {
675  $this->tabs->addTab(
676  self::TAB_INFO,
677  $this->lng->txt(self::TAB_INFO),
678  $this->getLinkTarget(self::CMD_INFO)
679  );
680  }
681 
682  if ($this->checkAccess("write")) {
683  $this->tabs->addTab(
684  self::TAB_SETTINGS,
685  $this->lng->txt(self::TAB_SETTINGS),
686  $this->getLinkTarget(self::CMD_SETTINGS)
687  );
688  }
689 
690  if ($this->checkAccess("read")) {
691  $cmd = null;
692  if ($this->checkAccess("manage_members")) {
693  $cmd = self::CMD_MEMBERS;
694  } elseif (
695  $this->getObject()->getLSSettings()->getMembersGallery()
696  && $this->getObject()->getLSRoles()->isMember($this->user->getId())
697  ) {
698  $cmd = self::CMD_MEMBERS_GALLERY;
699  }
700 
701  if ($cmd) {
702  $this->tabs->addTab(
703  self::TAB_MEMBERS,
704  $this->lng->txt(self::TAB_MEMBERS),
705  $this->ctrl->getLinkTarget($this, $cmd, "", false, false)
706  );
707  }
708  }
709 
711  $this->tabs->addTab(
712  self::TAB_LP,
713  $this->lng->txt(self::TAB_LP),
714  $this->ctrl->getLinkTargetByClass(array('ilobjlearningsequencegui', 'illearningprogressgui'), '')
715  );
716  }
717 
718  if ($this->checkAccess("write")) {
719  $this->tabs->addTab(
720  self::TAB_EXPORT,
721  $this->lng->txt(self::TAB_EXPORT),
722  $this->ctrl->getLinkTargetByClass("ilexportgui", "")
723  );
724  }
725 
726  if ($this->checkAccess("edit_permission")) {
727  $this->tabs->addTab(
728  self::TAB_PERMISSIONS,
729  $this->lng->txt(self::TAB_PERMISSIONS),
730  $this->getLinkTarget(self::CMD_PERMISSIONS)
731  );
732  }
733  }
734 
735  protected function addSubTabsForContent(string $active): void
736  {
737  $this->tabs->addSubTab(
738  self::TAB_VIEW_CONTENT,
739  $this->lng->txt(self::TAB_VIEW_CONTENT),
740  $this->getLinkTarget(self::CMD_LEARNER_VIEW)
741  );
742 
743  if ($this->checkAccess("write")) {
744  $this->tabs->addSubTab(
745  self::TAB_MANAGE,
746  $this->lng->txt(self::TAB_MANAGE),
747  $this->getLinkTarget(self::CMD_CONTENT)
748  );
749 
750  $this->tabs->addSubTab(
751  self::TAB_EDIT_INTRO,
752  $this->lng->txt("lso_settings_intro"),
753  $this->ctrl->getLinkTargetByClass(
754  strtolower('ilObjLearningSequenceEditIntroGUI'),
755  'preview'
756  )
757  );
758  $this->tabs->addSubTab(
759  self::TAB_EDIT_EXTRO,
760  $this->lng->txt("lso_settings_extro"),
761  $this->ctrl->getLinkTargetByClass(
762  strtolower('ilObjLearningSequenceEditExtroGUI'),
763  'preview'
764  )
765  );
766  }
767  $this->tabs->activateSubTab($active);
768  }
769 
770  protected function checkAccess(string $which): bool
771  {
772  return $this->access->checkAccess($which, "", $this->ref_id);
773  }
774 
775  protected function checkLPAccess(): bool
776  {
777  if (ilObject::_lookupType($this->ref_id, true) !== "lso") {
778  return false;
779  }
780 
781  $ref_id = $this->getObject()->getRefId();
782  $is_participant = ilLearningSequenceParticipants::_isParticipant($ref_id, $this->user->getId());
783 
784  return ilLearningProgressAccess::checkAccess($ref_id, $is_participant);
785  }
786 
787  protected function getLinkTarget(string $cmd): string
788  {
789  $class = $this->getClassForTabs($cmd);
790  $class_path = [
791  strtolower('ilObjLearningSequenceGUI'),
792  $class
793  ];
794  return $this->ctrl->getLinkTargetByClass($class_path, $cmd);
795  }
796 
797  protected function getClassForTabs(string $cmd): string
798  {
799  switch ($cmd) {
800  case self::CMD_CONTENT:
801  return 'ilObjLearningSequenceContentGUI';
802  case self::CMD_LEARNER_VIEW:
803  return 'ilObjLearningSequenceLearnerGUI';
804  case self::CMD_SETTINGS:
805  return 'ilObjLearningSequenceSettingsGUI';
806  case self::CMD_INFO:
807  return 'ilInfoScreenGUI';
808  case self::CMD_PERMISSIONS:
809  return 'ilPermissionGUI';
810  }
811 
812  throw new InvalidArgumentException('cannot resolve class for command: ' . $cmd);
813  }
814 
815  public function createMailSignature(): string
816  {
817  $link = chr(13) . chr(10) . chr(13) . chr(10);
818  $link .= $this->lng->txt('lso_mail_permanent_link');
819  $link .= chr(13) . chr(10) . chr(13) . chr(10);
820  $link .= ilLink::_getLink($this->object->getRefId());
821 
822  return rawurlencode(base64_encode($link));
823  }
824 
825  protected function getTrackingObject(): ilObjUserTracking
826  {
827  return new ilObjUserTracking();
828  }
829 
833  public function getLocalRoles(): array
834  {
835  $local_roles = $this->object->getLocalLearningSequenceRoles();
836  $lso_member = $this->object->getDefaultMemberRole();
837  $lso_roles = array();
838 
839  if (in_array($lso_member, $local_roles)) {
840  $lso_roles[$lso_member] = ilObjRole::_getTranslation(array_search($lso_member, $local_roles));
841  unset($local_roles[$lso_roles[$lso_member]]);
842  }
843 
844  foreach ($local_roles as $title => $role_id) {
845  $lso_roles[$role_id] = ilObjRole::_getTranslation($title);
846  }
847 
848  return $lso_roles;
849  }
850 
855  protected function getAdditionalOKTypes(): array
856  {
857  return array_filter(
858  array_keys($this->obj_definition->getSubObjects('lso', false)),
859  fn($type) => $type !== 'rolf'
860  );
861  }
862 
866  public function addCustomData(array $a_data): array
867  {
868  $res_data = array();
869  foreach ($a_data as $usr_id => $user_data) {
870  $res_data[$usr_id] = $user_data;
871  $udf_data = new ilUserDefinedData($usr_id);
872 
873  foreach ($udf_data->getAll() as $field => $value) {
874  list(, $field_id) = explode('_', $field);
875  $res_data[$usr_id]['udf_' . $field_id] = (string) $value;
876  }
877  }
878 
879  return $res_data;
880  }
881 
882  public function showPossibleSubObjects(): void
883  {
884  $this->ctrl->setParameterByClass(ilRepositoryGUI::class, 'ref_id', $this->ref_id);
887  $this->getCreatableObjectTypes(),
888  ilRepositoryGUI::class,
889  $this->ref_id
890  )
891  );
892  $gui->render();
893  $this->ctrl->clearParametersByClass(ilRepositoryGUI::class);
894  }
895 
896  public function afterSaveCallback(): void
897  {
898  }
899 
900  protected function enableDragDropFileUpload(): void
901  {
902  }
903 
904 }
redrawHeaderActionObject()
Ajax call: redraw action header only.
setOnScreenMessage(string $type, string $a_txt, bool $a_keep=false)
Set a message to be displayed to the user.
static hasAccess(string $mode, int $id)
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...
cancelCreation()
cancel create action and go back to repository parent
Psr Http Message ServerRequestInterface $request
GUI class for the workflow of copying objects.
const ROOT_FOLDER_ID
Definition: constants.php:32
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
Help GUI class.
trashObject()
Show trash content of object.
static _gotoRepositoryNode(int $ref_id, string $cmd="")
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
confirmedDeleteObject()
confirmed deletion of object -> objects are moved to trash or deleted immediately, if trash is disabled
deleteObject(bool $error=false)
Display deletion confirmation screen.
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
static _lookupObjId(int $ref_id)
static _isParticipant(int $a_ref_id, int $a_usr_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLanguage $lng
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const SORT_NEW_ITEMS_POSITION_BOTTOM
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
initDidacticTemplate(ilPropertyFormGUI $form)
undeleteObject()
Get objects back from trash.
linkObject()
create an new reference of an object in tree it&#39;s like a hard link of unix
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
const SORT_NEW_ITEMS_ORDER_CREATION
static _getTranslation(string $a_role_title)
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
$out
Definition: buildRTE.php:24
global $DIC
Definition: shib_login.php:22
static forwardByClass(string $base_class, array $classes, array $params, string $cmd='')
Last visited history for repository items.
ilPropertyFormGUI $form
static redirect(string $a_script)
ILIAS Style Content Service $content_style
buildAddNewItemElements(array $subtypes, string $create_target_class=ilRepositoryGUI::class, ?int $redirect_target_ref_id=null,)
Render add new item selector.
setTargetScript(string $a_target_script)
setPermanentLink(string $a_type, ?int $a_id, string $a_append="", string $a_target="", string $a_title="")
Generates and sets a permanent ilias link.
__construct(Container $dic, ilPlugin $plugin)
getReturnLocation(string $cmd, string $default_location="")
Get return location for command (command is method name without "Object", e.g.
cutObject()
cut object(s) out from a container and write the information to clipboard public ...
ilAppEventHandler $app_event_handler
ILIAS Container InternalGUIService $gui
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
Class ilObjLearningSequenceGUI ilObjLearningSequenceGUI: ilRepositoryGUI ilObjLearningSequenceGUI: ...
getAdditionalOKTypes()
append additional types to ilRepositoryExplorerGUI&#39;s positive list
const SORT_DIRECTION_ASC
static _lookupType(int $id, bool $reference=false)
addHeaderAction()
Add header action menu.
ilSetting $settings
Class ilObjUserTrackingGUI.
GUI class for learning sequence membership features.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call