ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjBookingPoolGUI.php
Go to the documentation of this file.
1 <?php
2 
24 
34 {
37  protected \ILIAS\Cron\Job\JobManager $cron_manager;
40  protected ilTabsGUI $tabs;
43  protected int $user_id_to_book; // user who is getting the reservation
44  protected int $user_id_assigner; // user who performs the reservation.(self/another)
45  protected string $seed;
46  protected string $sseed;
47  protected int $profile_user_id;
48  protected int $book_obj_id;
49  protected string $reservation_id;
50 
51  public function __construct(
52  $a_data,
53  int $a_id,
54  bool $a_call_by_reference,
55  bool $a_prepare_output = true
56  ) {
57  global $DIC;
58  $this->service = $DIC->bookingManager()->internal();
59 
60  $this->domain = $domain = $this->service->domain();
61  $this->gui = $gui = $this->service->gui();
62 
63  $this->tpl = $gui->mainTemplate();
64  $this->tabs = $gui->tabs();
65  $this->nav_history = $gui->navigationHistory();
66  $this->ctrl = $gui->ctrl();
67  $this->lng = $domain->lng();
68  $this->type = "book";
69 
70  $this->book_request = $gui->standardRequest();
71 
72  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
73  $this->lng->loadLanguageModule("book");
74 
75  // not on creation
76  if (is_object($this->object)) {
78  $pool = $this->object;
79  $this->help = new ilBookingHelpAdapter($pool, $DIC["ilHelp"]);
80  $DIC["ilHelp"]->setScreenIdComponent("book");
81  }
82 
83  $this->book_obj_id = $this->book_request->getObjectId();
84  $this->seed = $this->book_request->getSeed();
85  $this->sseed = $this->book_request->getSSeed();
86  $this->reservation_id = $this->book_request->getReservationId();
87  $this->profile_user_id = $this->book_request->getUserId();
88 
89  $this->user_id_assigner = $this->user->getId();
90  if ($this->book_request->getBookedUser() > 0) {
91  $this->user_id_to_book = $this->book_request->getBookedUser();
92  } else {
93  $this->user_id_to_book = $this->user_id_assigner; // by default user books his own booking objects.
94  }
95 
96  if ($this->book_request->getObjectId() > 0 &&
97  ilBookingObject::lookupPoolId($this->book_request->getObjectId()) !== $this->object->getId()) {
98  throw new ilException("Booking Object ID does not match Booking Pool.");
99  }
100  $this->cron_manager = $DIC->cron()->manager();
101  }
102 
108  public function executeCommand(): void
109  {
110  $tpl = $this->tpl;
111  $ilTabs = $this->tabs;
112  $ilNavigationHistory = $this->nav_history;
113  $ilUser = $this->user;
114 
115  $next_class = $this->ctrl->getNextClass($this);
116  $cmd = $this->ctrl->getCmd();
117 
118  if (!$next_class && $cmd === 'render') {
119  if ($ilUser->getId() !== ANONYMOUS_USER_ID) {
120  if ($this->object->getScheduleType() === ilObjBookingPool::TYPE_NO_SCHEDULE_PREFERENCES &&
121  !$this->checkPermissionBool('write')) {
122  $this->ctrl->redirectByClass(ilBookingPreferencesGUI::class);
123  } else {
124  $this->ctrl->redirectByClass(ilBookingObjectGUI::class);
125  }
126  $next_class = $this->ctrl->getNextClass($this);
127  } else {
128  $this->ctrl->redirect($this, "infoscreen");
129  }
130  }
131 
132  $ilNavigationHistory->addItem(
133  $this->ref_id,
134  "./goto.php?target=book_" . $this->ref_id,
135  "book"
136  );
137 
138  $this->prepareOutput();
139 
140  switch ($next_class) {
141  case 'ilpermissiongui':
142  $this->checkPermission('edit_permission');
143  $this->tabs_gui->setTabActive('perm_settings');
144  $perm_gui = new ilPermissionGUI($this);
145  $this->ctrl->forwardCommand($perm_gui);
146  break;
147 
148  case 'ilbookingobjectgui':
149  if (!$this->checkPermissionBool('read') && $this->checkPermissionBool('visible')) {
150  $this->ctrl->redirect($this, "infoScreen");
151  }
152  $this->checkPermission('read');
153  $this->tabs_gui->setTabActive('render');
154  $object_gui = new ilBookingObjectGUI(
155  $this,
156  $this->seed,
157  $this->sseed,
158  $this->help
159  );
160  $this->ctrl->forwardCommand($object_gui);
161  break;
162 
163  case 'ilbookingschedulegui':
164  $this->checkPermission('write');
165  $this->tabs_gui->setTabActive('schedules');
166  $schedule_gui = new ilBookingScheduleGUI($this);
167  $this->ctrl->forwardCommand($schedule_gui);
168  break;
169 
170  case 'ilpublicuserprofilegui':
171  $this->checkPermission('read');
172  $ilTabs->clearTargets();
173  $profile = new ilPublicUserProfileGUI($this->profile_user_id);
174  $profile->setBackUrl($this->ctrl->getLinkTargetByClass("ilbookingreservationsgui", ''));
175  $ret = $this->ctrl->forwardCommand($profile);
176  $tpl->setContent($ret);
177  break;
178 
179  case 'ilinfoscreengui':
180  $this->checkPermission('visible');
181  $this->infoScreen();
182  break;
183 
184  case "ilcommonactiondispatchergui":
185  $this->checkPermission('read');
187  if ($gui !== null) {
188  $this->ctrl->forwardCommand($gui);
189  }
190  break;
191 
192  case "ilobjectcopygui":
193  $this->checkPermission('copy');
194  $cp = new ilObjectCopyGUI($this);
195  $cp->setType("book");
196  $this->ctrl->forwardCommand($cp);
197  break;
198 
199  case 'ilobjectmetadatagui':
200  $this->checkPermission('write');
201  $this->tabs_gui->setTabActive('meta_data');
202  $md_gui = new ilObjectMetaDataGUI($this->object, 'bobj');
203  $this->ctrl->forwardCommand($md_gui);
204  break;
205 
206  case 'ilbookingparticipantgui':
207  $this->checkPermission('write');
208  $this->tabs_gui->setTabActive('participants');
209  $object_gui = new ilBookingParticipantGUI($this);
210  $this->ctrl->forwardCommand($object_gui);
211  break;
212 
213 
214  case "ilbookingreservationsgui":
215  $this->tabs_gui->setTabActive('log');
217  $pool = $this->object;
218  $res_gui = new ilBookingReservationsGUI($pool, $this->help);
219  $this->ctrl->forwardCommand($res_gui);
220  break;
221 
222  case 'ilbookingpreferencesgui':
223  $this->tabs_gui->setTabActive('preferences');
225  $pool = $this->object;
226  $gui = $this->service->gui()->preferences()->BookingPreferencesGUI($pool);
227  $this->ctrl->forwardCommand($gui);
228  break;
229 
230  case strtolower(SettingsGUI::class):
231  $this->checkPermission("write");
232  $this->showNoScheduleMessage();
233  $ilTabs->activateTab("settings");
234  $gui = $this->gui->settings()->settingsGUI(
235  $this->object->getId(),
237  $this->getCreationMode(),
238  $this
239  );
240  $this->ctrl->forwardCommand($gui);
241  break;
242 
243  default:
244  if (!in_array($cmd, ["create", "save", "infoScreen"])) {
245  $this->checkPermission('read');
246  }
247  $cmd = $this->ctrl->getCmd();
248  $cmd .= 'Object';
249  $this->$cmd();
250  break;
251  }
252 
253  $this->addHeaderAction();
254  }
255 
256  protected function afterSave(ilObject $new_object): void
257  {
258  $new_object->update();
259 
260  // always send a message
261  $this->tpl->setOnScreenMessage('success', $this->lng->txt("book_pool_added"), true);
262  $this->ctrl->setParameter($this, "ref_id", $new_object->getRefId());
263  $this->ctrl->redirect($this, "edit");
264  }
265 
266  protected function afterUpdate(): void
267  {
268  // check if template is changed
270  $this->object->getRefId()
271  );
272  $new_tpl_id = $this->getDidacticTemplateVar('dtpl');
273 
274  if ($new_tpl_id !== $current_tpl_id) {
275  // redirect to didactic template confirmation
276  $this->ctrl->redirect(ilDidacticTemplateGUI::class, "confirmTemplateSwitch");
277  return;
278  }
279  parent::afterUpdate();
280  }
281 
282  public function editObject(): void
283  {
284  $this->ctrl->redirectByClass(SettingsGUI::class, "");
285  }
286 
287  public function showNoScheduleMessage(): void
288  {
289  $schedule_manager = $this->domain->schedules($this->object->getId());
290 
291  // if we have no schedules yet - show info
292  if ($this->object->getScheduleType() === ilObjBookingPool::TYPE_FIX_SCHEDULE &&
293  !$schedule_manager->hasSchedules()) {
294  $this->tpl->setOnScreenMessage('info', $this->lng->txt("book_schedule_warning_edit"));
295  }
296  }
297 
298 
299  protected function initEditCustomForm(ilPropertyFormGUI $form): void
300  {
301  $obj_service = $this->getObjectService();
302 
303  // Show didactic template type
304  $this->initDidacticTemplate($form);
305 
306  $type = new ilRadioGroupInputGUI($this->lng->txt("book_schedule_type"), "stype");
307  $type->setRequired(true);
308  $form->addItem($type);
309 
310  // #14478
311  if (count(ilBookingObject::getList($this->object->getId()))) {
312  $type->setDisabled(true);
313  }
314 
315  $fixed = new ilRadioOption($this->lng->txt("book_schedule_type_fixed"), ilObjBookingPool::TYPE_FIX_SCHEDULE);
316  $fixed->setInfo($this->lng->txt("book_schedule_type_fixed_info"));
317  $type->addOption($fixed);
318 
319  #23637
320  //period
321  $period = new ilNumberInputGUI($this->lng->txt("book_reservation_filter_period"), "period");
322  $period->setInfo($this->lng->txt("book_reservation_filter_period_info"));
323  $period->setSuffix($this->lng->txt("days"));
324  $period->setSize(3);
325  $period->setMinValue(0);
326  $fixed->addSubItem($period);
327 
328  // reminder
329  $rmd = new ilCheckboxInputGUI($this->lng->txt("book_reminder_setting"), "rmd");
330  $rmd->setChecked((bool) $this->object->getReminderStatus());
331  $info = $this->lng->txt("book_reminder_day_info");
332  if (!$this->cron_manager->isJobActive('book_notification')) {
333  $info .= " " . $this->lng->txt("book_notification_cron_not_active");
334  }
335  $rmd->setInfo($info);
336  $fixed->addSubItem($rmd);
337 
338  $rmd_day = new ilNumberInputGUI($this->lng->txt("book_reminder_day"), "rmd_day");
339  $rmd_day->setRequired(true);
340  $rmd_day->setSize(3);
341  $rmd_day->setSuffix($this->lng->txt("book_reminder_days"));
342  $rmd_day->setValue(max($this->object->getReminderDay(), 1));
343  $rmd_day->setMinValue(1);
344  $rmd->addSubItem($rmd_day);
345 
346  // no schedule, direct booking
347  $none = new ilRadioOption($this->lng->txt("book_schedule_type_none_direct"), ilObjBookingPool::TYPE_NO_SCHEDULE);
348  $none->setInfo($this->lng->txt("book_schedule_type_none_direct_info"));
349  $type->addOption($none);
350 
351  $limit = new ilNumberInputGUI($this->lng->txt("book_overall_limit"), "limit");
352  $limit->setSize(4);
353  $limit->setMinValue(1);
354  $limit->setSuffix($this->lng->txt("book_bookings_per_user"));
355  $none->addSubItem($limit);
356 
357  // no schedule, using preferences
358  $pref = new ilRadioOption($this->lng->txt("book_schedule_type_none_preference"), ilObjBookingPool::TYPE_NO_SCHEDULE_PREFERENCES);
359  $pref->setInfo($this->lng->txt("book_schedule_type_none_preference_info"));
360  $type->addOption($pref);
361 
362  // number of preferences
363  $pref_nr = new ilNumberInputGUI($this->lng->txt("book_nr_of_preferences"), "preference_nr");
364  $pref_nr->setSize(4);
365  $pref_nr->setMinValue(1);
366  $pref_nr->setInfo($this->lng->txt("book_nr_of_preferences_info"));
367  $pref_nr->setSuffix($this->lng->txt("book_nr_preferences"));
368  $pref_nr->setRequired(true);
369  $pref->addSubItem($pref_nr);
370 
371  // preference deadline
372  $pref_deadline = new ilDateTimeInputGUI($this->lng->txt("book_pref_deadline"), "pref_deadline");
373  $pref_deadline->setInfo($this->lng->txt("book_pref_deadline_info"));
374  $pref_deadline->setShowTime(true);
375  $pref_deadline->setRequired(true);
376  $pref->addSubItem($pref_deadline);
377 
378 
379  $public = new ilCheckboxInputGUI($this->lng->txt("book_public_log"), "public");
380  $public->setInfo($this->lng->txt("book_public_log_info"));
381  $form->addItem($public);
382 
383  // messages
384  $mess = new ilCheckboxInputGUI($this->lng->txt("book_messages"), "messages");
385  $mess->setInfo($this->lng->txt("book_messages_info"));
386  $form->addItem($mess);
387 
388  $this->lng->loadLanguageModule("rep");
389  $section = new ilFormSectionHeaderGUI();
390  $section->setTitle($this->lng->txt('rep_activation_availability'));
391  $form->addItem($section);
392 
393  $online = new ilCheckboxInputGUI($this->lng->txt("online"), "online");
394  $form->addItem($online);
395 
396  // presentation
397  $pres = new ilFormSectionHeaderGUI();
398  $pres->setTitle($this->lng->txt('obj_presentation'));
399  $form->addItem($pres);
400 
401  // tile image
402  $obj_service->commonSettings()->legacyForm($form, $this->object)->addTileImage();
403 
404  // additional features
405  $feat = new ilFormSectionHeaderGUI();
406  $feat->setTitle($this->lng->txt('obj_features'));
407  $form->addItem($feat);
408  }
409 
410  public function addExternalEditFormCustom(ilPropertyFormGUI $form): void
411  {
413  $this->object->getId(),
414  $form,
416  );
417  }
418 
424  protected function setTabs(): void
425  {
426  $ilUser = $this->user;
427 
429  $pool = $this->object;
430 
431  if (!$this->ctrl->getNextClass() && in_array($this->ctrl->getCmd(), array("create", "save"))) {
432  return;
433  }
434 
435  if ($this->checkPermissionBool('read')) {
436  if ($ilUser->getId() !== ANONYMOUS_USER_ID) {
437  if ($pool->getScheduleType() === ilObjBookingPool::TYPE_NO_SCHEDULE_PREFERENCES) {
438  $this->tabs_gui->addTab(
439  "preferences",
440  $this->lng->txt("book_pref_overview"),
441  $this->ctrl->getLinkTargetByClass("ilbookingpreferencesgui", "")
442  );
443  }
444 
445  if ($pool->getScheduleType() !== ilObjBookingPool::TYPE_NO_SCHEDULE_PREFERENCES ||
446  $this->checkPermissionBool('write')) {
447  $this->tabs_gui->addTab(
448  "render",
449  $this->lng->txt("book_booking_objects"),
450  $this->ctrl->getLinkTarget($this, "render")
451  );
452  }
453  }
454 
455  if ($ilUser->getId() !== ANONYMOUS_USER_ID || $this->object->hasPublicLog()) {
456  $this->tabs_gui->addTab(
457  "log",
458  $this->lng->txt("book_log"),
459  $this->ctrl->getLinkTargetByClass("ilbookingreservationsgui", "")
460  );
461  }
462 
463  $this->tabs_gui->addTab(
464  "info",
465  $this->lng->txt("info_short"),
466  $this->ctrl->getLinkTarget($this, "infoscreen")
467  );
468  }
469 
470  if ($this->checkPermissionBool('write')) {
471  /*
472  $this->tabs_gui->addTab(
473  "settings",
474  $this->lng->txt("settings"),
475  $this->ctrl->getLinkTarget($this, "edit")
476  );*/
477 
478  $this->tabs_gui->addTab(
479  "settings",
480  $this->lng->txt("settings"),
481  $this->ctrl->getLinkTargetByClass(SettingsGUI::class, "")
482  );
483 
484  if ($this->object->getScheduleType() === ilObjBookingPool::TYPE_FIX_SCHEDULE) {
485  $this->tabs_gui->addTab(
486  "schedules",
487  $this->lng->txt("book_schedules"),
488  $this->ctrl->getLinkTargetByClass("ilbookingschedulegui", "render")
489  );
490  }
491 
492  $this->tabs_gui->addTab(
493  "participants",
494  $this->lng->txt("participants"),
495  $this->ctrl->getLinkTargetByClass("ilbookingparticipantgui", "render")
496  );
497 
498  // meta data
499  $mdgui = new ilObjectMetaDataGUI($this->object, "bobj");
500  $mdtab = $mdgui->getTab();
501  if ($mdtab) {
502  $this->tabs_gui->addTarget(
503  "meta_data",
504  $mdtab,
505  "",
506  "ilobjectmetadatagui"
507  );
508  }
509  }
510 
511 
512  if ($this->checkPermissionBool('edit_permission')) {
513  $this->tabs_gui->addTab(
514  "perm_settings",
515  $this->lng->txt("perm_settings"),
516  $this->ctrl->getLinkTargetByClass("ilpermissiongui", "perm")
517  );
518  }
519  }
520 
521  public static function _goto(string $a_target): void
522  {
523  global $DIC;
524  $main_tpl = $DIC->ui()->mainTemplate();
525 
526  $ilAccess = $DIC->access();
527  $lng = $DIC->language();
528 
529  if ($ilAccess->checkAccess("read", "", $a_target)) {
530  ilObjectGUI::_gotoRepositoryNode($a_target, "render");
531  } elseif ($ilAccess->checkAccess("visible", "", $a_target)) {
532  ilObjectGUI::_gotoRepositoryNode($a_target, "infoScreen");
533  } elseif ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
534  $main_tpl->setOnScreenMessage('failure', sprintf(
535  $lng->txt("msg_no_perm_read_item"),
537  ), true);
539  }
540  }
541 
545  public function infoScreenObject(): void
546  {
547  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
548  }
549 
550  public function infoScreen(): string
551  {
552  $ilCtrl = $this->ctrl;
553 
554  $this->tabs_gui->setTabActive('info');
555 
556  $this->checkPermission("visible");
557 
558  $info = new ilInfoScreenGUI($this);
559 
560  $info->enablePrivateNotes();
561 
562  if ($this->checkPermissionBool("read")) {
563  $info->enableNews();
564  }
565 
566  // no news editing for files, just notifications
567  $info->enableNewsEditing(false);
568  if ($this->checkPermissionBool("write")) {
569  $news_set = new ilSetting("news");
570  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
571 
572  if ($enable_internal_rss) {
573  $info->setBlockProperty("news", "settings", true);
574  $info->setBlockProperty("news", "public_notifications_option", true);
575  }
576  }
577 
578  // forward the command
579  if ($ilCtrl->getNextClass() === "ilinfoscreengui") {
580  $ilCtrl->forwardCommand($info);
581  } else {
582  return $ilCtrl->getHTML($info);
583  }
584  return "";
585  }
586 
587 
588  public function showProfileObject(): void
589  {
590  $tpl = $this->tpl;
591  $ilCtrl = $this->ctrl;
592 
593  $this->tabs_gui->clearTargets();
594 
596 
597  $profile = new ilPublicUserProfileGUI($user_id);
598  $profile->setBackUrl($this->ctrl->getLinkTarget($this, 'log'));
599  $tpl->setContent($ilCtrl->getHTML($profile));
600  }
601 
602  protected function addLocatorItems(): void
603  {
604  $ilLocator = $this->locator;
605 
606  if (is_object($this->object)) {
607  $ilLocator->addItem($this->object->getTitle(), $this->ctrl->getLinkTarget($this, "render"), "", $this->object->getRefId());
608  }
609  }
610 
611  protected function initHeaderAction(?string $sub_type = null, ?int $sub_id = null): ?ilObjectListGUI
612  {
614  $user = $this->user;
615  $ctrl = $this->ctrl;
616  $lng = $this->lng;
617 
618  $lng->loadLanguageModule("noti");
619 
620  $lg = parent::initHeaderAction($sub_type, $sub_id);
621 
622  if ($lg && $access->checkAccess("read", "", $this->ref_id)) {
623  if ($this->object->getScheduleType() === ilObjBookingPool::TYPE_FIX_SCHEDULE &&
624  $this->object->getReminderStatus()) {
625  // notification
628  $user->getId(),
629  $this->object->getId()
630  )) {
631  $lg->addHeaderIcon(
632  "not_icon",
633  ilUtil::getImagePath("object/notification_off.svg"),
634  $lng->txt("noti_notification_deactivated")
635  );
636 
637  $ctrl->setParameter($this, "ntf", 1);
638  $caption = "noti_activate_notification";
639  } else {
640  $lg->addHeaderIcon(
641  "not_icon",
642  ilUtil::getImagePath("object/notification_on.svg"),
643  $lng->txt("noti_notification_activated")
644  );
645 
646  $ctrl->setParameter($this, "ntf", 0);
647  $caption = "noti_deactivate_notification";
648  }
649 
650  $lg->addCustomCommand(
651  $ctrl->getLinkTarget($this, "saveNotification"),
652  $caption
653  );
654 
655  $ctrl->setParameter($this, "ntf", "");
656  }
657  }
658 
659  return $lg;
660  }
661 
662  public function saveNotificationObject(): void
663  {
664  $ctrl = $this->ctrl;
665  $user = $this->user;
666 
667 
668  switch ($this->book_request->getNotification()) {
669  case 0:
670  ilNotification::setNotification(ilNotification::TYPE_BOOK, $user->getId(), $this->object->getId(), false);
671  break;
672 
673  case 1:
674  ilNotification::setNotification(ilNotification::TYPE_BOOK, $user->getId(), $this->object->getId(), true);
675  break;
676  }
677  $ctrl->redirect($this, "render");
678  }
679 }
InternalDomainService $domain
ilObjBookingPoolGUI: ilPermissionGUI, ilBookingObjectGUI ilObjBookingPoolGUI: ilBookingScheduleGUI, ilInfoScreenGUI, ilPublicUserProfileGUI ilObjBookingPoolGUI: ilCommonActionDispatcherGUI, ilObjectCopyGUI, ilObjectMetaDataGUI ilObjBookingPoolGUI: ilBookingParticipantGUI, ilBookingReservationsGUI, ilBookingPreferencesGUI ilObjBookingPoolGUI: ILIAS ilObjBookingPoolGUI: ilRepositoryGUI, ilAdministrationGUI
This class represents an option in a radio group.
Class ilObjectMetaDataGUI.
ilNavigationHistory $nav_history
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ANONYMOUS_USER_ID
Definition: constants.php:27
static _goto(string $a_target)
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...
GUI class for the workflow of copying objects.
addExternalEditFormCustom(ilPropertyFormGUI $form)
const ROOT_FOLDER_ID
Definition: constants.php:32
prepareOutput(bool $show_sub_objects=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setInfo(string $a_info)
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
getDidacticTemplateVar(string $type)
Get didactic template setting from creation screen.
static _gotoRepositoryNode(int $ref_id, string $cmd="")
setContent(string $a_html)
Sets content for standard template.
loadLanguageModule(string $a_module)
Load language module.
ILIAS Cron Job JobManager $cron_manager
This class represents a date/time property in a property form.
static _lookupObjId(int $ref_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
initEditCustomForm(ilPropertyFormGUI $form)
GUI class for public user profile presentation.
Author: Alexander Killing killing@leifos.de
This class represents a property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
static setNotification(int $type, int $user_id, int $id, bool $status=true)
Set notification status for object and user.
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
ilBookingHelpAdapter $help
This class represents a number property in a property form.
initDidacticTemplate(ilPropertyFormGUI $form)
Class ilObjectGUI Basic methods of all Output classes.
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)
static getList(int $a_pool_id, ?string $a_title=null)
Get list of booking objects.
static initServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
setRequired(bool $a_required)
Last visited history for repository items.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
initHeaderAction(?string $sub_type=null, ?int $sub_id=null)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilAccessHandler $access
static hasNotification(int $type, int $user_id, int $id)
Check notification status for object and user.
setTabs()
set admin tabs
StandardGUIRequest $book_request
static lookupPoolId(int $object_id)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
afterSave(ilObject $new_object)
addHeaderAction()
Add header action menu.
ilLocatorGUI $locator
infoScreenObject()
this one is called from the info button in the repository
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.