ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjStudyProgrammeGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 use ILIAS\Refinery;
24 
48 {
49  private const TAB_VIEW_CONTENT = "view_content";
50  private const SUBTAB_VIEW_MANAGE = "manage";
51  private const TAB_INFO = "info_short";
52  private const TAB_SETTINGS = "settings";
53  private const TAB_MEMBERS = "members";
54  private const TAB_METADATA = "edit_advanced_settings";
55  private const SUBTAB_PAGE_EDIT = "page";
56  private const ASYNC_CALLS = [
60  ];
61 
64  protected ilHelpGUI $help;
72  protected Refinery\Factory $refinery;
75 
79  public ?ilObject $object;
80 
83 
84  public function __construct()
85  {
86  global $DIC;
87  $this->tpl = $DIC['tpl'];
88  $this->ctrl = $DIC['ilCtrl'];
89  $this->ilLocator = $DIC['ilLocator'];
90  $this->tree = $DIC['tree'];
91  $this->toolbar = $DIC['ilToolbar'];
92  $this->ilLog = $DIC['ilLog'];
93  $this->ilias = $DIC['ilias'];
94  $this->type = "prg";
95  $this->help = $DIC['ilHelp'];
96  $this->user = $DIC['ilUser'];
97  $this->refinery = $DIC->refinery();
98  $this->request_wrapper = $DIC->http()->wrapper()->query();
99 
100  $ref_id = $this->request_wrapper->retrieve("ref_id", $this->refinery->kindlyTo()->int());
101  parent::__construct([], $ref_id, true, false);
102 
103  $lng = $DIC['lng'];
104  $lng->loadLanguageModule("prg");
105 
107  $this->settings_gui = $dic['ilObjStudyProgrammeSettingsGUI'];
108  $this->members_gui = $dic['ilObjStudyProgrammeMembersGUI'];
109  $this->memberships_gui = $dic['ilObjStudyProgrammeAutoMembershipsGUI'];
110  $this->type_gui = $dic['ilStudyProgrammeTypeGUI'];
111  $this->autocategories_gui = $dic['ilObjStudyProgrammeAutoCategoriesGUI'];
112  $this->type_repository = $dic['model.Type.ilStudyProgrammeTypeRepository'];
113  $this->ui_factory = $dic['ui.factory'];
114 
115  $this->internal_domain_service = $DIC->container()->internal()->domain()->content();
116  $this->container_view_manager = $this->internal_domain_service->view($this->object);
117  }
118 
119  public function executeCommand(): void
120  {
121  $cmd = $this->ctrl->getCmd(self::SUBTAB_VIEW_MANAGE);
122  $next_class = $this->ctrl->getNextClass($this);
123 
124  if (!in_array($cmd, self::ASYNC_CALLS)) {
125  $this->addToNavigationHistory();
126  parent::prepareOutput();
127  $this->addHeaderAction();
128  }
129 
130  switch ($next_class) {
131  case "ilinfoscreengui":
132  $this->tabs_gui->activateTab(self::TAB_INFO);
133  $this->denyAccessIfNotAnyOf([
136  ]);
137  $info = new ilInfoScreenGUI($this);
138  $this->fillInfoScreen($info);
139  $this->ctrl->forwardCommand($info);
140 
141  // I guess this is how it was supposed to work,
142  // but it doesn't... it won't respect our sub-id and sub-type when creating the objects!
143  // So we reimplemented the stuff in the method parseInfoScreen()
144  // $info = new ilInfoScreenGUI($this);
145  // $amd_gui = new ilAdvancedMDRecordGUI(
146  // ilAdvancedMDRecordGUI::MODE_INFO,
147  // 'orgu',
148  // $this->object->getId(),
149  // 'orgu_type',
150  // $this->object->getOrgUnitTypeId()
151  // );
152  // $amd_gui->setInfoObject($info);
153  // $amd_gui->setSelectedOnly(true);
154  // $amd_gui->parse();
155  // $this->ctrl->forwardCommand($info);
156  break;
157  case 'ilpermissiongui':
158  $this->tabs_gui->activateTab('perm_settings');
159  $ilPermissionGUI = new ilPermissionGUI($this);
160  $this->ctrl->forwardCommand($ilPermissionGUI);
161  break;
162  case "ilcommonactiondispatchergui":
164  $this->ctrl->forwardCommand($gui);
165  break;
166  case "ilobjstudyprogrammesettingsgui":
168  $this->getSubTabs('settings');
169  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
170  $this->tabs_gui->activateSubTab('settings');
171  $this->settings_gui->setRefId($this->ref_id);
172  $this->ctrl->forwardCommand($this->settings_gui);
173  break;
174  case "ilobjstudyprogrammeautocategoriesgui":
176  $this->getSubTabs('settings');
177  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
178  $this->tabs_gui->activateSubTab('auto_content');
179  $this->autocategories_gui->setRefId($this->ref_id);
180  $this->initTreeJS();
181  $this->ctrl->forwardCommand($this->autocategories_gui);
182  break;
183  case "ilobjstudyprogrammemembersgui":
185  $this->getSubTabs('members');
186  $this->tabs_gui->activateTab(self::TAB_MEMBERS);
187  $this->tabs_gui->activateSubTab('edit_participants');
188  $this->members_gui->setParentGUI($this);
189  $this->members_gui->setRefId($this->ref_id);
190  $this->ctrl->forwardCommand($this->members_gui);
191  break;
192  case 'ilprgmembersexportgui':
194  $this->getSubTabs('members');
195  $this->tabs_gui->activateTab(self::TAB_MEMBERS);
196  $this->tabs_gui->activateSubTab('export_memberships');
197 
198  $specific_dic = ilStudyProgrammeDIC::specificDicFor($this->object);
199  $export_gui = new ilPRGMembersExportGUI(
200  $this->ref_id,
201  $specific_dic['ilStudyProgrammeUserTable'],
202  $specific_dic['DataFactory']
203  );
204  $this->ctrl->forwardCommand($export_gui);
205  break;
206  case "ilobjstudyprogrammeautomembershipsgui":
208  $this->getSubTabs('members');
209  $this->tabs_gui->activateTab(self::TAB_MEMBERS);
210  $this->tabs_gui->activateSubTab('auto_memberships');
211  $this->memberships_gui->setParentGUI($this);
212  $this->memberships_gui->setRefId($this->ref_id);
213  $this->ctrl->forwardCommand($this->memberships_gui);
214  break;
215  case 'ilstudyprogrammetypegui':
216  $this->tabs_gui->activateTab('subtypes');
217  $this->type_gui->setParentGUI($this);
218  $this->ctrl->forwardCommand($this->type_gui);
219  break;
220  case 'ilobjectcopygui':
221  $gui = new ilobjectcopygui($this);
222  $this->ctrl->forwardCommand($gui);
223  break;
224  case 'ilobjecttranslationgui':
226  $this->getSubTabs('settings');
227  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
228  $this->tabs_gui->activateSubTab('settings_trans');
229  $transgui = new ilObjectTranslationGUI($this);
230  $this->ctrl->forwardCommand($transgui);
231  break;
232  case "ilcertificategui":
233  $this->getSubTabs('settings');
235  $this->tabs_gui->activateTab(self::TAB_SETTINGS);
236  $this->tabs_gui->activateSubTab('certificate');
237  $guiFactory = new ilCertificateGUIFactory();
238  $output_gui = $guiFactory->create($this->object);
239  $this->ctrl->forwardCommand($output_gui);
240  break;
241  case "ilprgpageobjectgui":
243  if (!$this->object->hasContentPage()) {
244  $this->object->createContentPage();
245  }
246  $gui = new ilPRGPageObjectGUI($this->object->getId());
247  $gui->setItemPresentationManager(
248  $this->internal_domain_service
249  ->itemPresentation(
250  $this->object,
251  null,
252  false
253  )
254  );
255  $this->content_style_gui->addCss($this->tpl, $this->object->getRefId());
256  $out = $this->ctrl->forwardCommand($gui);
257  if (!is_null($out)) {
258  $this->tpl->setContent($out);
259  }
260  break;
261  case "ilobjstylesheetgui":
262  $this->forwardToStyleSheet();
263  break;
264  case "ilobjectcontentstylesettingsgui":
265  $this->tabs_gui->activateTab(self::TAB_VIEW_CONTENT);
266  $settings_gui = $this->content_style_gui
267  ->objectSettingsGUIForRefId(null, $this->object->getRefId());
268  $this->ctrl->forwardCommand($settings_gui);
269  break;
270  case strtolower(ilPropertyFormGUI::class):
271  /*
272  * Only used for async loading of the repository tree in custom md
273  * internal links (see #28060, #37974). This is necessary since StudyProgrammes don't
274  * use ilObjectMetaDataGUI.
275  */
276  $form = $this->initAdvancedSettingsForm();
279  'prg',
280  $this->object->getId(),
281  'prg_type',
282  $this->object->getSettings()->getTypeSettings()->getTypeId()
283  );
284  $gui->setPropertyForm($form);
285  $gui->parse();
286  $this->ctrl->forwardCommand($form);
287  break;
288  case false:
289  $this->getSubTabs($cmd);
290  switch ($cmd) {
291  case "cancelDelete":
292  case "cancel":
293  $cmd = "view";
294  // no break
295  case "create":
296  case "save":
297  case "edit":
298  $this->$cmd();
299  break;
300  case "view":
301  $this->getModeManager()->setContentMode();
302  $this->view();
303  break;
304  case self::SUBTAB_VIEW_MANAGE: //manage
305  $this->getModeManager()->setAdminMode();
306  $this->view();
307  break;
308  case "delete":
309  parent::deleteObject();
310  break;
311  case 'confirmedDelete':
312  parent::confirmedDeleteObject();
313  break;
314  case 'editAdvancedSettings':
315  $this->tabs_gui->activateTab('edit_advanced_settings');
316  $this->editAdvancedSettings();
317  break;
318  case 'updateAdvancedSettings':
319  $this->tabs_gui->activateTab('edit_advanced_settings');
320  $this->updateAdvancedSettings();
321  break;
322  case "infoScreen":
323  $this->ctrl->redirectByClass("ilInfoScreenGUI", "showSummary");
324  break;
325  case 'editPageFrame':
326  $this->ctrl->redirectToURL($this->getLinkTarget('edit_page'));
327  break;
328  case 'editStyleProperties':
329  $this->editStylePropertiesObject();
330  break;
331 
332  case 'render':
333  case 'disableAdministrationPanel':
334  case 'enableAdministrationPanel':
335  case 'saveSorting':
336  case 'editOrder':
337  case 'trash':
338  case 'undelete':
339  case 'confirmRemoveFromSystem':
340  case 'removeFromSystem':
341  case 'deliverCertificate':
342  case 'addToDesk':
343  case 'removeFromDesk':
344  case 'paste':
345  case 'clear':
346  case 'performPasteIntoMultipleObjects':
347  case 'cancelMoveLink':
348  case 'keepObjectsInClipboard':
349  case 'link':
350  case 'copy':
351  $this->getSubTabs(self::TAB_VIEW_CONTENT);
352  $cmd .= "Object";
353  $this->$cmd();
354  break;
355 
356  case 'editAvailabilityPeriod':
357  case 'saveAvailabilityPeriod':
358  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('prg_availability_action_not_allowed'));
359  $this->view();
360  break;
361  case 'cut':
362  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('prg_cut_action_not_allowed'));
363  $this->view();
364  break;
365  case 'routeImportCmd':
366  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('prg_import_action_not_allowed'));
367  $this->view();
368  break;
369 
370  default:
371  throw new ilException("ilObjStudyProgrammeGUI: Command not supported: $cmd");
372  }
373  break;
374  default:
375  throw new ilException("ilObjStudyProgrammeGUI: Can't forward to next class $next_class");
376  }
377  }
378 
379  protected function create(): void
380  {
381  parent::createObject();
382  }
383 
384  protected function save(): void
385  {
386  parent::saveObject();
387  }
388 
392  protected function afterSave(ilObject $new_object): void
393  {
394  // set default sort to manual
395  $settings = new ilContainerSortingSettings($new_object->getId());
396  $settings->setSortMode(ilContainer::SORT_MANUAL);
397  $settings->setSortDirection(ilContainer::SORT_DIRECTION_ASC);
399  $settings->setSortNewItemsPosition(ilContainer::SORT_NEW_ITEMS_POSITION_BOTTOM);
400  $settings->save();
401 
402  $this->tpl->setOnScreenMessage("success", $this->lng->txt("object_added"), true);
403 
404  $this->ctrl->setParameter($this, "ref_id", $new_object->getRefId());
405  $this->ctrl->redirectToURL($this->getReturnLocation(
406  "save",
407  $this->ctrl->getLinkTarget($this, "edit", "", false, false)
408  ));
409  }
410 
412  {
413  if (!$this->permissions) {
414  if (!$this->object || !$this->object->getRefId()) {
415  throw new LogicException('Cannot ask for permission when not in tree!');
416  }
417 
418  $this->permissions = ilStudyProgrammeDIC::specificDicFor($this->object)['permissionhelper'];
419  }
420  return $this->permissions;
421  }
422 
423  protected function view(): void
424  {
426  $this->tabs_gui->activateTab(self::TAB_VIEW_CONTENT);
427  parent::renderObject();
428  }
429 
431  {
432  $form = new ilPropertyFormGUI();
433  $form->setFormAction($this->ctrl->getFormAction($this));
434  $form->addCommandButton('updateAdvancedSettings', $this->lng->txt('save'));
435  $form->addCommandButton('editAdvancedSettings', $this->lng->txt('cancel'));
436 
437  return $form;
438  }
439 
440  protected function editAdvancedSettings(): void
441  {
443  $this->tpl->setOnScreenMessage("failure", $this->lng->txt("permission_denied"), true);
444  $this->ctrl->redirect($this);
445  }
446  $form = $this->initAdvancedSettingsForm();
449  'prg',
450  $this->object->getId(),
451  'prg_type',
452  $this->object->getSettings()->getTypeSettings()->getTypeId()
453  );
454  $gui->setPropertyForm($form);
455  $gui->parse();
456  $this->tpl->setContent($form->getHTML());
457  }
458 
459  protected function updateAdvancedSettings(): void
460  {
462  $this->tpl->setOnScreenMessage("failure", $this->lng->txt("permission_denied"), true);
463  $this->ctrl->redirect($this);
464  }
465  $form = $this->initAdvancedSettingsForm();
468  'prg',
469  $this->object->getId(),
470  'prg_type',
471  $this->object->getSettings()->getTypeSettings()->getTypeId()
472  );
473  $gui->setPropertyForm($form);
474  $gui->parse();
475  $form->checkInput();
476 
477  if ($gui->importEditFormPostValues()) {
478  $gui->writeEditForm();
479  $this->tpl->setOnScreenMessage("success", $this->lng->txt('settings_saved'), true);
480  $this->ctrl->redirect($this, 'editAdvancedSettings');
481  } else {
482  $this->tpl->setContent($form->getHTML());
483  }
484  }
485 
490  public function getAsyncCreationForm(): ilAsyncPropertyFormGUI
491  {
492  $asyncForm = new ilAsyncPropertyFormGUI($this->request_wrapper);
493 
494  $asyncForm->cloneForm(
495  $this->initCreateForm('prg')
496  );
497  $asyncForm->setAsync(true);
498 
499  return $asyncForm;
500  }
501 
503  // HELPERS
505 
506  protected function checkAccess(string $permission): bool
507  {
508  return $this->getPermissionsHelper()->may($permission);
509  }
510 
511  protected function denyAccessIfNot(string $permission): void
512  {
513  $this->denyAccessIfNotAnyOf([$permission]);
514  }
515 
516  protected function denyAccessIfNotAnyOf(array $permissions): void
517  {
518  if (!$this->getPermissionsHelper()->mayAnyOf($permissions)) {
520  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("msg_no_perm_write"));
521  $this->ctrl->redirectByClass('ilinfoscreengui', '');
522  } else {
523  $this->ilias->raiseError($this->lng->txt("msg_no_perm_read"), $this->ilias->error_obj->WARNING);
524  }
525  }
526  }
527 
528  protected function getTabs(): void
529  {
530  $this->help->setScreenIdComponent("prg");
532  $this->tabs_gui->addTab(self::TAB_VIEW_CONTENT, $this->lng->txt("content"), $this->getLinkTarget("view"));
533  }
534 
536  $this->tabs_gui->addTab(
537  self::TAB_INFO,
538  $this->lng->txt("info_short"),
539  $this->getLinkTarget("info_short")
540  );
541  }
542 
544  $this->tabs_gui->addTab(
545  self::TAB_SETTINGS,
546  $this->lng->txt("settings"),
547  $this->getLinkTarget("settings")
548  );
549  }
550 
552  $this->tabs_gui->addTab(
553  self::TAB_MEMBERS,
554  $this->lng->txt("assignments"),
555  $this->getLinkTarget("members")
556  );
557  }
558 
559  if ($this->object->hasAdvancedMetadata()
561  ) {
562  $this->tabs_gui->addTab(
563  self::TAB_METADATA,
564  $this->lng->txt('meta_data'),
565  $this->ctrl->getLinkTarget($this, 'editAdvancedSettings')
566  );
567  }
568 
569  parent::getTabs();
570  }
571 
576  public function getSubTabs(string $parent_tab): void
577  {
578  switch ($parent_tab) {
579  case self::TAB_VIEW_CONTENT:
580  case self::SUBTAB_VIEW_MANAGE:
581  case 'view':
582  case 'delete':
583  $this->addStandardContainerSubTabs(true);
584  break;
585 
586  case 'settings':
587  $this->tabs_gui->addSubTab(
588  'settings',
589  $this->lng->txt('general'),
590  $this->getLinkTarget('settings')
591  );
592 
593  if ($this->object->isAutoContentApplicable()) {
594  $this->tabs_gui->addSubTab(
595  "auto_content",
596  $this->lng->txt("content_automation"),
597  $this->getLinkTarget("auto_content")
598  );
599  }
600 
601  $this->tabs_gui->addSubTab(
602  "settings_trans",
603  $this->lng->txt("obj_multilinguality"),
604  $this->ctrl->getLinkTargetByClass("ilobjecttranslationgui", "")
605  );
606 
607  $validator = new ilCertificateActiveValidator();
608  if (true === $validator->validate()) {
609  $this->tabs_gui->addSubTabTarget(
610  "certificate",
611  $this->ctrl->getLinkTargetByClass("ilcertificategui", "certificateeditor"),
612  "",
613  "ilcertificategui"
614  );
615  }
616 
617  if ($this->permissions->isOrguAccessEnabledGlobally()) {
618  $this->tabs_gui->addSubTab(
619  'commonSettings',
620  $this->lng->txt("obj_features"),
621  $this->getLinkTarget("commonSettings")
622  );
623  }
624 
625  break;
626 
627  case 'members':
628  $this->tabs_gui->addSubTab(
629  'edit_participants',
630  $this->lng->txt('edit_participants'),
631  $this->getLinkTarget('members')
632  );
633 
635  $this->tabs_gui->addSubTab(
636  'auto_memberships',
637  $this->lng->txt('auto_memberships'),
638  $this->getLinkTarget('memberships')
639  );
640  }
641 
643  $this->tabs_gui->addSubTab(
644  'export_memberships',
645  $this->lng->txt('export_memberships'),
646  $this->getLinkTarget('export_memberships')
647  );
648  }
649  break;
650  }
651  }
652 
656  public function setContentSubTabs(): void
657  {
658  }
659 
663  protected function getLinkTarget(string $cmd): string
664  {
665  if ($cmd === "info_short") {
666  return $this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary");
667  }
668  if ($cmd === "settings") {
669  return $this->ctrl->getLinkTargetByClass("ilobjstudyprogrammesettingsgui", "view");
670  }
671  if ($cmd === "auto_content") {
672  return $this->ctrl->getLinkTargetByClass("ilObjStudyProgrammeAutoCategoriesGUI", "view");
673  }
674  if ($cmd === self::SUBTAB_VIEW_MANAGE) {
675  return $this->ctrl->getLinkTarget($this, self::SUBTAB_VIEW_MANAGE);
676  }
677 
678  if ($cmd === "members") {
679  return $this->ctrl->getLinkTargetByClass("ilobjstudyprogrammemembersgui", "view");
680  }
681  if ($cmd === "memberships") {
682  return $this->ctrl->getLinkTargetByClass("ilobjstudyprogrammeautomembershipsgui", "view");
683  }
684  if ($cmd == "export_memberships") {
685  return $this->ctrl->getLinkTargetByClass('ilprgmembersexportgui', 'show');
686  }
687  if ($cmd === "subtypes") {
688  return $this->ctrl->getLinkTargetByClass("ilstudyprogrammetypegui", "listTypes");
689  }
690  if ($cmd === "commonSettings") {
691  return $this->ctrl->getLinkTargetByClass(
692  [
693  "ilobjstudyprogrammesettingsgui",
694  "ilStudyProgrammeCommonSettingsGUI"
695  ],
696  "editSettings"
697  );
698  }
699  if ($cmd == "edit_page") {
700  return $this->ctrl->getLinkTargetByClass(
701  ["ilObjStudyProgrammeGUI", "ilPRGPageObjectGUI"],
702  'edit'
703  );
704  }
705 
706  return $this->ctrl->getLinkTarget($this, $cmd);
707  }
708 
712  protected function fillInfoScreen($info_screen): void
713  {
714  if (!$this->object->getSettings()->getTypeSettings()->getTypeId() ||
715  !ilStudyProgrammeDIC::dic()['model.Type.ilStudyProgrammeTypeRepository']
716  ->getType($this->object->getSettings()->getTypeSettings()->getTypeId())
717  ) {
718  return;
719  }
720 
721  $record_gui = new ilAdvancedMDRecordGUI(
723  'prg',
724  $this->object->getId(),
725  'prg_type',
726  $this->object->getSettings()->getTypeSettings()->getTypeId()
727  );
728  $record_gui->setInfoObject($info_screen);
729  $record_gui->parse();
730  }
731 
732  protected function edit(): void
733  {
735  $link = $this->ctrl->getLinkTargetByClass(ilObjStudyProgrammeSettingsGUI::class, 'view');
736  $this->ctrl->redirectToURL($link);
737  }
738 
739  public static function _goto(string $target): void
740  {
741  global $DIC;
742  $ilCtrl = $DIC['ilCtrl'];
743  $id = explode("_", $target);
744  $ilCtrl->setTargetScript('ilias.php');
745  $ilCtrl->setParameterByClass("ilobjstudyprogrammegui", "ref_id", $id[0]);
746  $ilCtrl->redirectByClass(array("ilRepositoryGUI", "ilobjstudyprogrammegui"), "view");
747  }
748 
749  public function addToNavigationHistory(): void
750  {
751  global $DIC;
752  $ilNavigationHistory = $DIC['ilNavigationHistory'];
753 
755  $ref_id = $this->request_wrapper->retrieve("ref_id", $this->refinery->kindlyTo()->int());
756  $link = ilLink::_getLink($ref_id, "prg");
757  $ilNavigationHistory->addItem($ref_id, $link, 'prg');
758  }
759  }
760 
761  protected function initHeaderAction(?string $sub_type = null, ?int $sub_id = null): ?ilObjectListGUI
762  {
763  $lg = parent::initHeaderAction($sub_type, $sub_id);
764  $validator = new ilCertificateDownloadValidator();
765  if ($lg && true === $validator->isCertificateDownloadable($this->user->getId(), $this->object->getId())) {
766  $cert_url = $this->ctrl->getLinkTarget($this, "deliverCertificate");
767  $this->lng->loadLanguageModule("certificate");
768  $lg->addCustomCommand($cert_url, "download_certificate");
769  $lg->addHeaderIcon(
770  "cert_icon",
771  ilUtil::getImagePath("standard/icon_cert.svg"),
772  $this->lng->txt("download_certificate"),
773  null,
774  null,
775  $cert_url
776  );
777  }
778  return $lg;
779  }
780 
781  protected function deliverCertificateObject(): void
782  {
783  $this->lng->loadLanguageModule('cert');
784 
785  $user_id = (int) $this->user->getId();
786  $obj_id = $this->object->getId();
787 
788  $validator = new ilCertificateDownloadValidator();
789  if (false === $validator->isCertificateDownloadable($user_id, $obj_id)) {
790  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("permission_denied"), true);
791  $this->ctrl->redirect($this);
792  }
793  $repository = new ilUserCertificateRepository();
794  $pdf_action = new ilCertificatePdfAction(
795  new ilPdfGenerator($repository),
797  $this->lng->txt('error_creating_certificate_pdf')
798  );
799  $pdf_action->downloadPdf($user_id, $obj_id);
800  }
801 
802  protected function initTreeJS(): void
803  {
805  }
806 
807  protected function supportsPageEditor(): bool
808  {
809  return true;
810  }
811 }
ilObjStudyProgrammeMembersGUI $members_gui
ilStudyProgrammeTypeGUI $type_gui
Class ilObjStudyProgrammeGUI class ilObjStudyProgrammeGUI: ilPermissionGUI ilObjStudyProgrammeGUI: ...
PageObjectGUI for StudyProgrammes.
ilObjStudyProgrammeAutoMembershipsGUI $memberships_gui
afterSave(ilObject $new_object)
Sets the sorting of the container correctly.
ilStudyProgrammeTypeRepository $type_repository
Help GUI class.
ILIAS Container Content DomainService $internal_domain_service
getSubTabs(string $parent_tab)
Adds subtabs based on the parent tab.
Component logger with individual log levels by component id.
fillInfoScreen($info_screen)
Adding meta-data to the info-screen.
loadLanguageModule(string $a_module)
Load language module.
ilObjStudyProgrammeSettingsGUI $settings_gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: class.ilLog.php:30
Covers the persistence of sp-type related information.
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const SORT_NEW_ITEMS_POSITION_BOTTOM
initHeaderAction(?string $sub_type=null, ?int $sub_id=null)
setFormAction(string $a_formaction)
addStandardContainerSubTabs(bool $a_include_view=true)
Add standard container subtabs for view, manage, oderdering and text/media editor link...
getAsyncCreationForm()
Method for implementing async windows-output Should be moved into core to enable async requests on cr...
const SORT_NEW_ITEMS_ORDER_CREATION
Validates if an active certificate is stored in the database and can be downloaded by the user...
$out
Definition: buildRTE.php:24
global $DIC
Definition: shib_login.php:22
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Class ilObjForumAdministration.
static specificDicFor(ilObjStudyProgramme $prg)
ilObjStudyProgrammeMembersGUI: ilStudyProgrammeRepositorySearchGUI ilObjStudyProgrammeMembersGUI: il...
addCommandButton(string $a_cmd, string $a_text, string $a_id="")
ilPropertyFormGUI $form
Both role and OrgU-based permissions are relevant in many places of the PRG.
getLinkTarget(string $cmd)
Generates a link based on a cmd.
setContentSubTabs()
Disable default content subtabs.
ilPRGPermissionsHelper $permissions
ilObjStudyProgrammeAutoCategoriesGUI $autocategories_gui
__construct(Container $dic, ilPlugin $plugin)
getReturnLocation(string $cmd, string $default_location="")
Get return location for command (command is method name without "Object", e.g.
initCreateForm(string $new_type)
setInfoObject(ilInfoScreenGUI $info)
get info sections
ILIAS Container InternalGUIService $gui
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
$dic
Definition: result.php:31
const SORT_DIRECTION_ASC
export assignments of PRG
addHeaderAction()
Add header action menu.
ilSetting $settings
static init(?ilGlobalTemplateInterface $a_main_tpl=null)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
GUI class for object translation handling.
ilObjStudyProgrammeSettingsGUI: ilStudyProgrammeCommonSettingsGUI
downloadPdf(int $userId, int $objectId)