19 declare(strict_types=1);
34 protected \ILIAS\DI\UIServices
$ui;
36 protected \ILIAS\FileUpload\FileUpload
$upload;
38 protected \ILIAS\HTTP\Services
$http;
71 public function __construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output =
true)
75 $this->
ctrl = $DIC->ctrl();
76 $this->
lng = $DIC->language();
77 $this->tpl = $DIC->ui()->mainTemplate();
78 $this->
user = $DIC->user();
79 $this->tree = $DIC->repositoryTree();
80 $this->
access = $DIC->access();
81 $this->
toolbar = $DIC->toolbar();
82 $this->ilErr = $DIC[
"ilErr"];
83 $this->object_service = $DIC->object();
84 $this->objDefinition = $DIC[
'objDefinition'];
85 $this->tabs_gui = $DIC->tabs();
86 $this->
locator = $DIC[
"ilLocator"];
87 $this->rbacreview = $DIC->rbac()->review();
88 $this->
event = $DIC->event();
89 $this->
upload = $DIC->upload();
90 $this->
help = $DIC->help();
91 $this->
http = $DIC->http();
97 $this->
lng->loadLanguageModule(
"event");
98 $this->
lng->loadLanguageModule(
'crs');
99 $this->
lng->loadLanguageModule(
'trac');
100 $this->
lng->loadLanguageModule(
'sess');
102 if ($this->
http->wrapper()->query()->has(
'ref_id')) {
103 $this->requested_ref_id = $this->
http->wrapper()->query()->retrieve(
109 if ($this->
http->wrapper()->query()->has(
'user_id')) {
110 $this->requested_user_id = $this->
http->wrapper()->query()->retrieve(
116 if ($this->
http->wrapper()->post()->has(
'file_id')) {
117 $this->requested_file_id = $this->
http->wrapper()->post()->retrieve(
121 } elseif ($this->
http->wrapper()->query()->has(
'file_id')) {
122 $this->requested_file_id = $this->
http->wrapper()->query()->retrieve(
128 if ($this->
http->wrapper()->query()->has(
'offset')) {
129 $this->requested_offset = $this->
http->wrapper()->query()->retrieve(
135 if ($this->
http->wrapper()->query()->has(
'sort_by')) {
136 $this->requested_sort_by = $this->
http->wrapper()->query()->retrieve(
138 $this->
refinery->kindlyTo()->string()
142 if ($this->
http->wrapper()->query()->has(
'sort_order')) {
143 $this->requested_sort_order = $this->
http->wrapper()->query()->retrieve(
145 $this->
refinery->kindlyTo()->string()
149 if ($this->
http->wrapper()->post()->has(
'items')) {
150 $this->requested_items = $this->
http->wrapper()->post()->retrieve(
152 $this->
refinery->kindlyTo()->listOf(
157 $this->
ui = $DIC->ui();
166 $next_class = $this->
ctrl->getNextClass($this);
167 $cmd = $this->
ctrl->getCmd();
171 $ilAccess->checkAccess(
'read',
'', $this->requested_ref_id)
173 $GLOBALS[
'DIC'][
'ilNavigationHistory']->addItem(
174 $this->requested_ref_id,
177 $this->
object->getPresentationTitle()
182 switch ($next_class) {
183 case 'ilsessionmembershipgui':
184 $this->tabs_gui->activateTab(
'members');
186 $this->
ctrl->forwardCommand($mem_gui);
189 case "ilinfoscreengui":
194 case 'ilobjectmetadatagui':
196 $this->tabs_gui->activateTab(
'metadata');
198 $this->
ctrl->forwardCommand($md_gui);
201 case 'ilpermissiongui':
202 $this->tabs_gui->setTabActive(
'perm_settings');
204 $ret = $this->
ctrl->forwardCommand($perm_gui);
207 case 'ilobjectcopygui':
209 $cp->setType(
'sess');
210 $this->
ctrl->forwardCommand($cp);
215 $this->tabs_gui->setTabActive(
"export");
217 $exp_gui->addFormat(
"xml");
218 $ret = $this->
ctrl->forwardCommand($exp_gui);
222 case "ilcommonactiondispatchergui":
224 $this->
ctrl->forwardCommand($gui);
227 case 'ilmembershipgui':
228 $this->
ctrl->setReturn($this,
'members');
230 $this->
ctrl->forwardCommand($mem);
233 case "illearningprogressgui":
236 $this->
object->getRefId(),
237 $this->requested_user_id ?:
$ilUser->getId()
239 $this->
ctrl->forwardCommand($new_gui);
240 $this->tabs_gui->setTabActive(
'learning_progress');
243 case "ilpropertyformgui":
245 if (!is_object($this->
object)) {
249 if ($form ===
true) {
253 $ilCtrl->forwardCommand($form);
256 case "ilbookinggatewaygui":
258 $parent_id = $tree->
getParentId($this->requested_ref_id);
260 $this->tabs_gui->activateTab(
'obj_tool_setting_booking');
262 $this->
ctrl->forwardCommand($gui);
266 if ($cmd ==
"applyFilter") {
268 } elseif ($cmd ==
"resetFilter") {
285 $this->
ctrl->redirectByClass(
'ilSessionMembershipGUI',
'participants');
300 parent::prepareOutput($show_subobjects);
303 $title = strlen($this->
object->getTitle()) ? (
': ' . $this->
object->getTitle()) :
'';
305 $this->tpl->setTitle(
306 $this->
object->getFirstAppointment()->appointmentToString() . $title
325 $this->getCurrentObject()->isRegistrationUserLimitEnabled() &&
326 $this->getCurrentObject()->getRegistrationMaxUsers() &&
329 if (!$this->getCurrentObject()->isRegistrationWaitingListEnabled()) {
330 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'sess_reg_max_users_exceeded'),
true);
331 $this->
ctrl->redirect($this,
'infoScreen');
334 $wait->addToList(
$ilUser->getId());
335 $this->
ctrl->redirect($this,
'infoScreen');
339 switch ($this->getCurrentObject()->getRegistrationType()) {
341 $this->
ctrl->redirect($this,
'info');
345 $part->register(
$ilUser->getId());
346 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'event_registered'),
true);
348 $ilAppEventHandler->raise(
352 'obj_id' => $this->getCurrentObject()->
getId(),
353 'ref_id' => $this->getCurrentObject()->
getRefId(),
358 $this->
ctrl->redirect($this,
'infoScreen');
362 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'sess_registered_confirm'),
true);
363 $part->addSubscriber(
$ilUser->getId());
365 $ilAppEventHandler->raise(
369 'obj_id' => $this->getCurrentObject()->
getId(),
370 'ref_id' => $this->getCurrentObject()->
getRefId(),
375 $this->
ctrl->redirect($this,
'infoScreen');
387 $this->
ctrl->redirect($this,
'infoScreen');
393 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'event_unregistered'),
true);
396 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'event_registered'),
true);
399 $this->
ctrl->redirect($this,
'infoScreen');
410 if ($part->isSubscriber(
$ilUser->getId())) {
411 $part->deleteSubscriber(
$ilUser->getId());
414 $part->unregister(
$ilUser->getId());
416 if ($a_refuse_participation) {
417 $event_part = new \ilEventParticipants($this->
object->getId());
430 $this->
object->getRefId()
438 $ilAppEventHandler->raise(
442 'obj_id' => $this->getCurrentObject()->
getId(),
443 'ref_id' => $this->getCurrentObject()->
getRefId(),
447 if ($a_refuse_participation) {
448 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'sess_participation_refused_info'),
true);
450 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'event_unregistered'),
true);
452 $this->
ctrl->returnToParent($this);
455 public static function _goto(
string $a_target): void
458 $main_tpl = $DIC->ui()->mainTemplate();
460 $ilAccess = $DIC->access();
461 $lng = $DIC->language();
463 $ilCtrl = $DIC->ctrl();
464 $parts = explode(
'_', $a_target);
467 if ($ilAccess->checkAccess(
'write',
'', $a_target)) {
469 $ilCtrl->setTargetScript(
'ilias.php');
470 $ilCtrl->setParameterByClass(
'ilSessionMembershipGUI',
'ref_id', $a_target);
471 $ilCtrl->setTargetScript(
'ilias.php');
472 $ilCtrl->redirectByClass(array(
'ilRepositoryGUI', __CLASS__,
'ilSessionMembershipGUI'));
476 if ($ilAccess->checkAccess(
'visible',
"", $a_target)) {
479 $main_tpl->setOnScreenMessage(
'failure', sprintf(
480 $lng->
txt(
"msg_no_perm_read_item"),
494 $this->
ctrl->setCmd(
"showSummary");
495 $this->
ctrl->setCmdClass(
"ilinfoscreengui");
543 if (!$this->getCurrentObject()->enabledRegistrationForUsers() ||
$ilUser->isAnonymous()) {
549 $this->
ctrl->setParameter($this,
"ref_id", $this->getCurrentObject()->
getRefId());
552 if ($this->
object->isCannotParticipateOptionEnabled()) {
553 $btn_excused = $this->
ui->factory()->button()->standard(
554 $this->
lng->txt(
'sess_bt_refuse'),
555 $this->
ctrl->getLinkTarget($this,
'refuseParticipation')
561 if (!is_null($btn_excused)) {
562 $ilToolbar->addComponent($btn_excused);
565 } elseif ($part->isSubscriber(
$ilUser->getId())) {
566 if (!is_null($btn_excused)) {
567 $ilToolbar->addComponent($btn_excused);
571 if (!is_null($btn_excused)) {
572 $ilToolbar->addComponent($btn_excused);
580 $this->getCurrentObject()->isRegistrationUserLimitEnabled() &&
581 $this->getCurrentObject()->getRegistrationMaxUsers() &&
584 if ($this->getCurrentObject()->isRegistrationWaitingListEnabled()) {
585 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'sess_reg_max_users_exceeded_wl'));
586 $btn_attend = $this->
ui->factory()->button()->primary(
587 $this->
lng->txt(
"mem_add_to_wl"),
588 $this->
ctrl->getLinkTargetByClass(array(
"ilRepositoryGUI",
"ilObjSessionGUI"),
"register")
590 $ilToolbar->addComponent($btn_attend);
592 $ilToolbar->addComponent($btn_excused);
595 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'sess_reg_max_users_exceeded'));
600 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'sess_join_info'));
601 $btn_attend = $this->
ui->factory()->button()->primary(
602 $this->
lng->txt(
"join_session"),
603 $this->
ctrl->getLinkTargetByClass(array(
"ilRepositoryGUI",
"ilObjSessionGUI"),
"register")
605 $ilToolbar->addComponent($btn_attend);
607 $ilToolbar->addComponent($btn_excused);
615 protected function infoScreen():
void 622 $this->tabs_gui->setTabActive(
'info_short');
627 $info->enableBookingInfo(
true);
641 foreach ($eventItems as $item) {
646 $list_gui->setContainerObject($this);
650 $html .= $list_gui->getListItemHTML(
651 (
int) $item[
'ref_id'],
652 (
int) $item[
'obj_id'],
653 (
string) $item[
'title'],
654 (
string) $item[
'description']
659 $info->addSection($this->
lng->txt(
'event_materials'));
669 if (strlen($this->
object->getLocation()) || strlen($this->
object->getDetails())) {
670 $info->addSection($this->
lng->txt(
'event_section_information'));
674 $this->
lng->txt(
'event_location'),
678 if (strlen($this->
object->getDetails())) {
680 $this->
lng->txt(
'event_details_workflow'),
687 $this->record_gui->parse();
690 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
694 if ($this->
object->hasTutorSettings()) {
695 $info->addSection($this->
lng->txt(
'event_tutor_data'));
696 if (strlen($fullname = $this->
object->getName())) {
698 $this->
lng->txt(
'event_lecturer'),
704 $this->
lng->txt(
'tutor_email'),
708 if (strlen($phone = $this->
object->getPhone())) {
710 $this->
lng->txt(
'tutor_phone'),
718 $contacts =
$parts->getContacts();
719 if (count($contacts) > 0) {
720 $info->addSection($this->
lng->txt(
"crs_mem_contacts"));
721 foreach ($contacts as $contact) {
723 $pgui->setBackUrl($this->
ctrl->getLinkTargetByClass(
"ilinfoscreengui"));
724 $pgui->setEmbedded(
true);
725 $info->addProperty(
"", $pgui->getHTML());
730 $this->
ctrl->forwardCommand($info);
735 $this->
object->getRefId(),
736 $this->
object->getId(),
751 if (!is_object($this->
object)) {
764 $this->
ctrl->setParameter($this,
'ref_id', $this->
object->getRefId());
765 $this->
ctrl->setParameter($this,
'new_type',
'');
766 $this->
ctrl->redirect($this,
'materials');
769 public function saveObject(
bool $a_redirect_on_success =
true): void
776 $this->
ctrl->saveParameter($this,
"new_type");
779 $this->ilErr->setMessage(
'');
780 if (!$this->
form->checkInput()) {
781 $this->tpl->setOnScreenMessage(
783 $this->
lng->txt(
'err_check_input')
785 $this->
form->setValuesByPost();
792 $this->ilErr->setMessage($this->
lng->txt(
'err_check_input'));
798 $this->
object->validate();
799 $this->
object->getFirstAppointment()->validate();
801 if (strlen($this->ilErr->getMessage())) {
802 $this->tpl->setOnScreenMessage(
'failure', $this->ilErr->getMessage());
803 $this->
form->setValuesByPost();
807 $this->
object->create();
808 $this->
object->createReference();
809 $this->
object->putInTree($this->requested_ref_id);
810 $this->
object->setPermissions($this->requested_ref_id);
820 $this->record_gui->writeEditForm($this->
object->getId());
827 $this->
object->applyDidacticTemplate($dtpl);
831 if (!$this->
form->getInput(
"lp_preset")) {
834 $lp_obj_settings->update(
false);
838 $this->
object->getFirstAppointment()->setSessionId($this->
object->getId());
839 $this->
object->getFirstAppointment()->create();
843 $object_service->
commonSettings()->legacyForm($this->
form, $this->
object)->saveTileImage();
847 if ($a_redirect_on_success) {
848 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'event_add_new_event'),
true);
849 $this->
ctrl->returnToParent($this);
862 if (!isset($_FILES[
'files'][
'name'][$counter])) {
865 if (!strlen($_FILES[
'files'][
'name'][$counter])) {
872 $file->setDescription(
'');
875 $new_ref_id = $file->createReference();
876 $file->putInTree($tree->
getParentId($this->object->getRefId()));
877 $file->setPermissions($tree->
getParentId($this->object->getRefId()));
880 if (!$upload->hasBeenProcessed()) {
883 $file->getUploadFile(
884 $_FILES[
'files'][
'tmp_name'][$counter],
885 $_FILES[
'files'][
'name'][$counter]
888 $items[] = $new_ref_id;
900 if (!$this->rec->getFrequenceType()) {
905 $period_start = clone $this->
object->getFirstAppointment()->getStart();
908 $period_end = clone $this->
object->getFirstAppointment()->getStart();
912 $period_diff = $this->
object->getFirstAppointment()->getEnd()->get(
IL_CAL_UNIX) -
913 $this->
object->getFirstAppointment()->getStart()->get(
IL_CAL_UNIX);
920 foreach ($date_list->get() as $date) {
925 $new_obj = $this->
object->cloneObject($parent_id);
930 $new_obj->applyDidacticTemplate($dtpl);
934 $new_obj->getFirstAppointment()->setStartingTime($date->get(
IL_CAL_UNIX));
935 $new_obj->getFirstAppointment()->setEndingTime($date->get(
IL_CAL_UNIX) + $period_diff);
936 $new_obj->getFirstAppointment()->update();
937 $new_obj->update(
true);
940 if (!$a_activate_lp) {
943 $lp_obj_settings->update(
false);
956 $this->tabs_gui->setTabActive(
'settings');
959 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.sess_edit.html',
'Modules/Session');
960 $this->tpl->setVariable(
'EVENT_EDIT_TABLE', $this->
form->getHTML());
962 if (!count($this->
object->getFiles())) {
966 foreach ($this->
object->getFiles() as $file) {
967 $table_data[
'id'] = $file->getFileId();
968 $table_data[
'filename'] = $file->getFileName();
969 $table_data[
'filetype'] = $file->getFileType();
970 $table_data[
'filesize'] = $file->getFileSize();
972 $rows[] = $table_data;
976 $table_gui->setTitle($this->
lng->txt(
"event_files"));
977 $table_gui->setData(
$rows);
978 $table_gui->addCommandButton(
"cancel", $this->
lng->txt(
"cancel"));
979 $table_gui->addMultiCommand(
"confirmDeleteFiles", $this->
lng->txt(
"delete"));
980 $table_gui->setSelectAllCheckbox(
"file_id");
981 $this->tpl->setVariable(
'EVENT_FILE_TABLE', $table_gui->getHTML());
988 $old_autofill = $this->
object->hasWaitingListAutoFill();
991 $this->ilErr->setMessage(
'');
992 if (!$this->
form->checkInput()) {
993 $this->tpl->setOnScreenMessage(
995 $this->
lng->txt(
'err_check_input')
997 $this->
form->setValuesByPost();
1006 $new_type_info = $this->
form->getInput(
'didactic_type');
1007 if ($new_type_info) {
1008 $new_type = explode(
'_', $this->
form->getInput(
'didactic_type'));
1009 $new_type = (
int) $new_type[1];
1011 $modified = ($new_type !== $old_type);
1018 $this->tpl->setOnScreenMessage(
1020 $this->
lng->txt(
'err_check_input')
1022 $this->
form->setValuesByPost();
1028 $this->
object->validate();
1029 $this->
object->getFirstAppointment()->validate();
1031 if (strlen($this->ilErr->getMessage())) {
1032 $this->tpl->setOnScreenMessage(
'failure', $this->ilErr->getMessage());
1036 $this->
object->update();
1037 $this->
object->getFirstAppointment()->update();
1047 $this->record_gui->writeEditForm();
1051 $object_service->
commonSettings()->legacyForm($this->
form, $this->
object)->saveTileImage();
1054 if (!$old_autofill &&
1055 $this->
object->hasWaitingListAutoFill()) {
1056 $this->
object->handleAutoFill();
1061 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'event_updated'),
true);
1062 $this->
ctrl->redirect($this,
'edit');
1066 if ($new_type == 0) {
1067 $new_type_txt = $this->
lng->txt(
'il_sess_status_open');
1070 $new_type_txt = $dtpl->getPresentationTitle($this->
lng->getLangKey());
1072 $this->tabs_gui->activateTab(
'settings');
1075 $confirm->setFormAction($this->
ctrl->getFormAction($this));
1076 $confirm->setHeaderText($this->
lng->txt(
'sess_warn_sess_type_changed'));
1080 $this->
lng->txt(
'sess_info_new_sess_type') .
': ' . $new_type_txt
1082 $confirm->setConfirm($this->
lng->txt(
'sess_change_type'),
'updateSessionType');
1083 $confirm->setCancel($this->
lng->txt(
'cancel'),
'edit');
1085 $this->tpl->setContent($confirm->getHTML());
1094 $this->
object->getRefId(),
1095 (
int) $this->
http->request()->getParsedBody()[
'sess_type']
1098 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1099 $this->
ctrl->redirect($this,
'edit');
1104 $this->tabs_gui->setTabActive(
'settings');
1106 if (!count($this->requested_file_id)) {
1107 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
1115 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
"deleteFiles"));
1116 $c_gui->setHeaderText($this->
lng->txt(
"info_delete_sure"));
1117 $c_gui->setCancel($this->
lng->txt(
"cancel"),
"edit");
1118 $c_gui->setConfirm($this->
lng->txt(
"confirm"),
"deleteFiles");
1121 foreach ($this->requested_file_id as $file_id) {
1123 if ($file->getSessionId() != $this->
object->getEventId()) {
1124 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
1128 $c_gui->addItem(
"file_id[]", $file_id, $file->getFileName());
1131 $this->tpl->setContent($c_gui->getHTML());
1137 if (!count($this->requested_file_id)) {
1138 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
1142 foreach ($this->requested_file_id as
$id) {
1146 $this->
object->initFiles();
1158 $is_course = $is_group =
false;
1162 if ($this->container_ref_id) {
1165 if (!$this->container_ref_id) {
1167 if ($this->container_ref_id) {
1171 if (!$this->container_ref_id) {
1172 $this->tpl->setOnScreenMessage(
'failure',
'No container object found. Aborting');
1177 if ($a_init_participants && $this->container_obj_id) {
1180 } elseif ($is_group) {
1193 $this->tabs_gui->activateTab(
'materials');
1199 $gui->setDisabledObjectTypes(
1207 $gui->setAfterCreationCallback($this->ref_id);
1214 $tbl->setDisableFilterHiding(
true);
1216 $tbl->addMultiCommand(
'saveMaterials', $this->
lng->txt(
'sess_assign'));
1217 $tbl->addMultiCommand(
"removeMaterials", $this->
lng->txt(
"remove"));
1219 $tbl->setTitle($this->
lng->txt(
"event_assign_materials_table"));
1220 $tbl->setDescription($this->
lng->txt(
'event_assign_materials_info'));
1222 $tbl->setMaterialItems($this->event_items->getItems());
1224 $data = $tbl->getDataFromDb();
1225 $tbl->setMaterials(
$data);
1227 $this->tpl->setContent($tbl->getHTML());
1233 $tbl->writeFilterToSession();
1234 $tbl->resetOffset();
1235 $this->
ctrl->redirect($this,
"materials");
1241 $tbl->resetOffset();
1242 $tbl->resetFilter();
1243 $this->
ctrl->redirect($this,
"materials");
1259 $db_items = $this->event_items->
getItems();
1262 $list_items_checked = array_map(
'intval', $list_items_checked);
1264 $items_to_save = array_merge($db_items, $list_items_checked);
1265 $items_to_save = array_unique($items_to_save);
1267 $this->event_items->setItems($items_to_save);
1268 $this->event_items->update();
1279 $tbl->storeNavParameter();
1281 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1282 $this->
ctrl->redirect($this,
'materials');
1291 $ilTabs->setTabActive(
'event_edit_members');
1294 $form = $list->initForm(
'printAttendanceList');
1307 $list->setId(
'sessattlst');
1309 $event_app = $this->
object->getFirstAppointment();
1313 $desc .=
" " . $this->
object->getTitle();
1314 $list->setTitle($this->
lng->txt(
'sess_attendance_list'), $desc);
1316 $list->addPreset(
'mark', $this->
lng->txt(
'trac_mark'),
true);
1317 $list->addPreset(
'comment', $this->
lng->txt(
'trac_comment'),
true);
1318 if ($this->
object->enabledRegistration()) {
1319 $list->addPreset(
'registered', $this->
lng->txt(
'event_tbl_registered'),
true);
1321 $list->addPreset(
'participated', $this->
lng->txt(
'event_tbl_participated'),
true);
1322 $list->addBlank($this->
lng->txt(
'sess_signature'));
1324 $list->addUserFilter(
'registered', $this->
lng->txt(
'event_list_registered_only'));
1334 $list->initFromForm();
1335 $list->setCallback(array($this,
'getAttendanceListUserData'));
1338 $list->getFullscreenHTML();
1343 $data = $this->event_part->getUser($a_user_id);
1345 if ($a_filters && $a_filters[
"registered"] && !
$data[
"registered"]) {
1350 $this->
lng->txt(
'yes') :
1351 $this->
lng->txt(
'no');
1352 $data[
'participated'] =
$data[
'participated'] ?
1353 $this->
lng->txt(
'yes') :
1354 $this->
lng->txt(
'no');
1365 if (!$ilAccess->checkAccess(
'manage_members',
'', $this->object->getRefId())) {
1366 $this->ilErr->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->ilErr->MESSAGE);
1369 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.sess_list.html',
'Modules/Session');
1370 $this->
__showButton($this->
ctrl->getLinkTarget($this,
'exportCSV'), $this->
lng->txt(
'event_csv_export'));
1372 $this->tpl->addBlockFile(
"EVENTS_TABLE",
"events_table",
"tpl.table.html");
1373 $this->tpl->addBlockFile(
'TBL_CONTENT',
'tbl_content',
'tpl.sess_list_row.html',
'Modules/Session');
1376 $members = $members_obj->getParticipants();
1382 $this->
lng->txt(
"event_overview"),
1384 $this->
lng->txt(
'obj_usr')
1386 $this->
ctrl->setParameter($this,
'offset', $this->requested_offset);
1392 if (!is_object($tmp_event) || $tmp_event->getType() !=
'sess') {
1395 $events[] = $tmp_event;
1402 $headerNames[] = $this->
lng->txt(
'name');
1403 $headerVars[] =
"name";
1404 $colWidth[] =
'20%';
1406 for (
$i = 1;
$i <= count($events);
$i++) {
1407 $headerNames[] =
$i;
1408 $headerVars[] =
"event_" .
$i;
1409 $colWidth[] = 80 / count($events) .
"%";
1412 $this->tpl->setVariable(
"FORMACTION", $this->
ctrl->getFormAction($this));
1413 $tbl->setHeaderNames($headerNames);
1414 $tbl->setHeaderVars($headerVars, $this->
ctrl->getParameterArray($this));
1415 $tbl->setColumnWidth($colWidth);
1417 $tbl->setOrderColumn($this->requested_sort_by);
1418 $tbl->setOrderDirection($this->requested_sort_order);
1419 $tbl->setOffset($this->requested_offset);
1420 $tbl->setLimit((
int)
$ilUser->getPref(
"hits_per_page"));
1421 $tbl->setMaxCount(count($members));
1422 $tbl->setFooter(
"tblfooter", $this->
lng->txt(
"previous"), $this->
lng->txt(
"next"));
1424 $sliced_users = array_slice($members, $this->requested_offset,
ilSession::get(
"tbl_limit"));
1425 $tbl->disable(
'sort');
1429 foreach ($sliced_users as $user_id) {
1430 foreach ($events as $event_obj) {
1431 $this->tpl->setCurrentBlock(
"eventcols");
1436 $this->tpl->setVariable(
"IMAGE_PARTICIPATED", $event_part->
hasParticipated($user_id) ?
1440 $this->tpl->setVariable(
"PARTICIPATED", $event_part->
hasParticipated($user_id) ?
1441 $this->
lng->txt(
'event_participated') :
1442 $this->
lng->txt(
'event_not_participated'));
1445 $this->tpl->parseCurrentBlock();
1448 $this->tpl->setCurrentBlock(
"tbl_content");
1450 $this->tpl->setVariable(
"LASTNAME",
$name[
'lastname']);
1451 $this->tpl->setVariable(
"FIRSTNAME",
$name[
'firstname']);
1453 $this->tpl->parseCurrentBlock();
1456 $this->tpl->setVariable(
"HEAD_TXT_LEGEND", $this->
lng->txt(
"legend"));
1457 $this->tpl->setVariable(
"HEAD_TXT_DIGIT", $this->
lng->txt(
"event_digit"));
1458 $this->tpl->setVariable(
"HEAD_TXT_EVENT", $this->
lng->txt(
"event"));
1459 $this->tpl->setVariable(
"HEAD_TXT_LOCATION", $this->
lng->txt(
"event_location"));
1460 $this->tpl->setVariable(
"HEAD_TXT_DATE_TIME", $this->
lng->txt(
"event_date_time"));
1462 foreach ($events as $event_obj) {
1463 $this->tpl->setCurrentBlock(
"legend_loop");
1464 $this->tpl->setVariable(
"LEGEND_DIGIT",
$i++);
1465 $this->tpl->setVariable(
"LEGEND_EVENT_TITLE", $event_obj->getTitle());
1466 $this->tpl->setVariable(
"LEGEND_EVENT_DESCRIPTION", $event_obj->getDescription());
1467 $this->tpl->setVariable(
"LEGEND_EVENT_LOCATION", $event_obj->getLocation());
1468 $this->tpl->setVariable(
"LEGEND_EVENT_APPOINTMENT", $event_obj->getFirstAppointment()->appointmentToString());
1469 $this->tpl->parseCurrentBlock();
1473 protected function __showButton(
string $cmd,
string $text,
string $target =
''): void
1475 $this->
toolbar->addButton($text, $this->
ctrl->getLinkTarget($this, $cmd), $target);
1485 $this->
lng->loadLanguageModule(
'dateplaner');
1489 $this->
form =
new ilPropertyFormGUI();
1490 $this->
form->setMultipart(
true);
1491 $this->
form->setTableWidth(
'600px');
1492 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
1493 $this->
form->setMultipart(
true);
1497 $this->
lng->loadLanguageModule(
'dateplaner');
1500 $dur->enableToggleFullTime(
1501 $this->
lng->txt(
'event_fulltime_info'),
1502 $this->
object->getFirstAppointment()->enabledFulltime()
1504 $dur->setShowTime(
true);
1505 $dur->setStart($this->
object->getFirstAppointment()->getStart());
1506 $dur->setEnd($this->
object->getFirstAppointment()->getEnd());
1508 $this->
form->addItem($dur);
1512 if ($a_mode ==
'create') {
1513 if (!is_object($this->rec)) {
1517 $rec->allowUnlimitedRecurrences(
false);
1519 $this->
form->addItem($rec);
1523 $lp->
setInfo($this->
lng->txt(
"sess_lp_preset_info"));
1524 $lp->setChecked(
true);
1525 $this->
form->addItem($lp);
1529 $section->setTitle($this->
lng->txt(
'event_section_information'));
1530 $this->
form->addItem($section);
1534 $title->setRequired(
true);
1535 $title->setValue($this->
object->getTitle());
1536 $title->setSize(50);
1537 $title->setMaxLength(70);
1538 $this->
form->addItem($title);
1545 $this->
form->addItem($desc);
1552 $this->
form->addItem($desc);
1561 if ($a_mode ==
'create') {
1566 $this->record_gui->setRefId($this->requested_ref_id);
1567 $this->record_gui->setPropertyForm($this->
form);
1568 $this->record_gui->parse();
1576 $this->record_gui->parse();
1582 $section->setTitle($this->
lng->txt(
'event_tutor_data'));
1583 $this->
form->addItem($section);
1587 $tutor_name->setValue($this->
object->getName());
1588 $tutor_name->setSize(20);
1589 $tutor_name->setMaxLength(70);
1590 $this->
form->addItem($tutor_name);
1593 $tutor_email =
new ilTextInputGUI($this->
lng->txt(
'tutor_email'),
'tutor_email');
1594 $tutor_email->setValue($this->
object->getEmail());
1595 $tutor_email->setSize(20);
1596 $tutor_email->setMaxLength(70);
1597 $this->
form->addItem($tutor_email);
1600 $tutor_phone =
new ilTextInputGUI($this->
lng->txt(
'tutor_phone'),
'tutor_phone');
1601 $tutor_phone->setValue($this->
object->getPhone());
1602 $tutor_phone->setSize(20);
1603 $tutor_phone->setMaxLength(70);
1604 $this->
form->addItem($tutor_phone);
1607 $section->setTitle($this->
lng->txt(
'sess_section_reg'));
1608 $this->
form->addItem($section);
1621 $reg_settings->addMembershipFormElements($this->
form,
'');
1625 $section->setTitle($this->
lng->txt(
'event_assign_files'));
1626 $this->
form->addItem($section);
1630 $this->
form->addItem($files);
1633 $section->setTitle($this->
lng->txt(
'sess_setting_header_presentation'));
1634 $this->
form->addItem($section);
1636 $object_service->
commonSettings()->legacyForm($this->
form, $this->
object)->addTileImage();
1639 $features->setTitle($this->
lng->txt(
'obj_features'));
1640 $this->
form->addItem($features);
1651 $gallery->setInfo($this->
lng->txt(
'sess_show_participants_info'));
1652 $this->
form->addItem($gallery);
1657 $mail_type->
setValue((
string) $this->
object->getMailToMembersType());
1660 $this->
lng->txt(
'sess_mail_admins_only'),
1662 $this->
lng->txt(
'sess_mail_admins_only_info')
1664 $mail_type->addOption($mail_tutors);
1667 $this->
lng->txt(
'sess_mail_all'),
1669 $this->
lng->txt(
'sess_mail_all_info')
1671 $mail_type->addOption($mail_all);
1672 $this->
form->addItem($mail_type);
1678 $this->
form->setTitle($this->
lng->txt(
'event_table_create'));
1680 $this->
form->addCommandButton(
'save', $this->
lng->txt(
'event_btn_add'));
1681 $this->
form->addCommandButton(
'saveAndAssignMaterials', $this->
lng->txt(
'event_btn_add_edit'));
1682 $this->
form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
1687 $this->
form->setTitle($this->
lng->txt(
'event_table_update'));
1689 $this->
form->addCommandButton(
'update', $this->
lng->txt(
'save'));
1690 $this->
form->addCommandButton(
'cancelEdit', $this->
lng->txt(
'cancel'));
1699 $event = $this->
form->getItemByPostVar(
'event');
1700 if ($event->getStart() && $event->getEnd()) {
1701 $this->
object->getFirstAppointment()->setStartingTime($event->getStart()->get(
IL_CAL_UNIX));
1702 $this->
object->getFirstAppointment()->setEndingTime($event->getStart()->get(
IL_CAL_UNIX));
1703 $this->
object->getFirstAppointment()->setStart($event->getStart());
1704 $this->
object->getFirstAppointment()->setEnd($event->getEnd());
1705 $this->
object->getFirstAppointment()->toggleFulltime($event->getStart() instanceof
ilDate);
1708 $this->
object->setTitle($this->
form->getInput(
'title'));
1709 $this->
object->setDescription($this->
form->getInput(
'desc'));
1710 $this->
object->setLocation($this->
form->getInput(
'location'));
1711 $this->
object->setName($this->
form->getInput(
'tutor_name'));
1712 $this->
object->setPhone($this->
form->getInput(
'tutor_phone'));
1713 $this->
object->setEmail($this->
form->getInput(
'tutor_email'));
1714 $this->
object->setDetails($this->
form->getInput(
'details'));
1716 $this->
object->setRegistrationNotificationEnabled((
bool) $this->
form->getInput(
'registration_notification'));
1717 $this->
object->setRegistrationNotificationOption($this->
form->getInput(
'notification_option'));
1719 $this->
object->setRegistrationType((
int) $this->
form->getInput(
'registration_type'));
1721 switch ($this->
object->getRegistrationType()) {
1723 $this->
object->enableCannotParticipateOption((
bool) $this->
form->getInput(
'show_cannot_participate_direct'));
1726 $this->
object->enableCannotParticipateOption((
bool) $this->
form->getInput(
'show_cannot_participate_request'));
1729 $this->
object->enableCannotParticipateOption(
false);
1734 $this->
object->setRegistrationMaxUsers((
int) $this->
form->getInput(
'registration_max_members'));
1735 $this->
object->enableRegistrationUserLimit((
int) $this->
form->getInput(
'registration_membership_limited'));
1736 $this->
object->setShowMembers((
bool) $this->
form->getInput(
'show_members'));
1737 $this->
object->setMailToMembersType((
int) $this->
form->getInput(
'mail_type'));
1739 switch ((
int) $this->
form->getInput(
'waiting_list')) {
1741 $this->
object->enableRegistrationWaitingList(
true);
1742 $this->
object->setWaitingListAutoFill(
true);
1746 $this->
object->enableRegistrationWaitingList(
true);
1747 $this->
object->setWaitingListAutoFill(
false);
1751 $this->
object->enableRegistrationWaitingList(
false);
1752 $this->
object->setWaitingListAutoFill(
false);
1761 switch ($this->
form->getInput(
'frequence')) {
1763 $this->rec->setFrequenceType($this->
form->getInput(
'frequence'));
1764 $this->rec->setInterval((
int) $this->
form->getInput(
'count_DAILY'));
1768 $this->rec->setFrequenceType($this->
form->getInput(
'frequence'));
1769 $this->rec->setInterval((
int) $this->
form->getInput(
'count_WEEKLY'));
1770 if (is_array($this->
form->getInput(
'byday_WEEKLY'))) {
1776 $this->rec->setFrequenceType($this->
form->getInput(
'frequence'));
1777 $this->rec->setInterval((
int) $this->
form->getInput(
'count_MONTHLY'));
1778 switch ((
int) $this->
form->getInput(
'subtype_MONTHLY')) {
1784 switch ((
int) $this->
form->getInput(
'monthly_byday_day')) {
1787 $this->rec->setBYSETPOS($this->
form->getInput(
'monthly_byday_num'));
1788 $this->rec->setBYDAY(
'MO,TU,WE,TH,FR');
1793 $this->rec->setBYMONTHDAY($this->
form->getInput(
'monthly_byday_num'));
1797 $this->rec->setBYDAY(($this->
form->getInput(
'monthly_byday_num') . $this->
form->getInput(
'monthly_byday_day')));
1803 $this->rec->setBYMONTHDAY($this->
form->getInput(
'monthly_bymonthday'));
1809 $this->rec->setFrequenceType($this->
form->getInput(
'frequence'));
1810 $this->rec->setInterval((
int) $this->
form->getInput(
'count_YEARLY'));
1811 switch ((
int) $this->
form->getInput(
'subtype_YEARLY')) {
1817 $this->rec->setBYMONTH($this->
form->getInput(
'yearly_bymonth_byday'));
1818 $this->rec->setBYDAY(($this->
form->getInput(
'yearly_byday_num') . $this->
form->getInput(
'yearly_byday')));
1822 $this->rec->setBYMONTH($this->
form->getInput(
'yearly_bymonth_by_monthday'));
1823 $this->rec->setBYMONTHDAY($this->
form->getInput(
'yearly_bymonthday'));
1830 switch ((
int) $this->
form->getInput(
'until_type')) {
1832 $this->rec->setFrequenceUntilDate(null);
1837 $this->rec->setFrequenceUntilDate(null);
1838 $this->rec->setFrequenceUntilCount((
int) $this->
form->getInput(
'count'));
1842 $frequence = $this->
form->getItemByPostVar(
'frequence');
1843 $end = $frequence->getRecurrence()->getFrequenceUntilDate();
1844 $this->rec->setFrequenceUntilCount(0);
1845 $this->rec->setFrequenceUntilDate($end);
1852 return mktime($time[
'h'], $time[
'm'], 0, $date[
'm'], $date[
'd'], $date[
'y']);
1861 $title = strlen($this->
object->getTitle()) ? (
': ' . $this->
object->getTitle()) :
'';
1862 $title = $this->
object->getFirstAppointment()->appointmentToString() . $title;
1879 $parent_class = $objDefinition->
getClassName($parent_type);
1880 $parent_class =
'ilObj' . $parent_class .
'GUI';
1895 $ilHelp->setScreenIdComponent(
"sess");
1902 $this->tabs_gui->setBackTarget(
1903 $this->
lng->txt(
'back_to_' . $parent_type .
'_content'),
1904 $ilCtrl->getLinkTarget($this,
"redirectToParentContentPage")
1907 $this->tabs_gui->addTarget(
1909 $this->
ctrl->getLinkTarget($this,
'infoScreen')
1912 if ($ilAccess->checkAccess(
'write',
'', $this->object->getRefId())) {
1913 $this->tabs_gui->addTarget(
1915 $this->
ctrl->getLinkTarget($this,
'edit')
1918 if ($ilAccess->checkAccess(
'manage_materials',
'', $this->object->getRefId())) {
1919 $this->tabs_gui->addTab(
1921 $this->
lng->txt(
'crs_materials'),
1922 $this->
ctrl->getLinkTarget($this,
'materials')
1927 $parent_id = $tree->
getParentId($this->requested_ref_id);
1933 $this->tabs_gui->addTarget(
1934 "obj_tool_setting_booking",
1935 $this->
ctrl->getLinkTargetByClass(array(
"ilbookinggatewaygui"),
"")
1940 $is_participant = $this->
object->getMembersObject()->isAssigned(
$ilUser->getId());
1942 $membership_gui->addMemberTab($this->tabs_gui, $is_participant);
1947 $this->tabs_gui->addTarget(
1948 'learning_progress',
1949 $this->
ctrl->getLinkTargetByClass(array(
'ilobjsessiongui',
'illearningprogressgui'),
''),
1951 array(
'illplistofobjectsgui',
'illplistofsettingsgui',
'illearningprogressgui',
'illplistofprogressgui')
1956 if ($ilAccess->checkAccess(
'edit_metadata',
'', $this->ref_id)) {
1958 $mdtab = $mdgui->getTab();
1960 $this->tabs_gui->addTab(
1962 $this->
lng->txt(
'meta_data'),
1969 if ($ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
1970 $this->tabs_gui->addTarget(
1972 $this->
ctrl->getLinkTargetByClass(
"ilexportgui",
""),
1980 if ($ilAccess->checkAccess(
'edit_permission',
"", $this->object->getRefId())) {
1981 $this->tabs_gui->addTarget(
1983 $this->
ctrl->getLinkTargetByClass(
"ilpermissiongui",
"perm"),
1984 array(
"perm",
"info",
"owner"),
2007 foreach ($a_usr_ids as $usr_id) {
2008 $tmp_data[$usr_id] = [];
2015 if (!$this->container_ref_id) {
2026 $parent_id = $tree->
getParentId($this->requested_ref_id);
2028 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $parent_id);
2030 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
2039 foreach ($local_roles as $role_id) {
2041 if (substr($title, 0, 19) ==
'il_sess_participant') {
2060 $link = chr(13) . chr(10) . chr(13) . chr(10);
2061 $link .= $this->
lng->txt(
'sess_mail_permanent_link');
2062 $link .= chr(13) . chr(10) . chr(13) . chr(10);
2064 return rawurlencode(base64_encode($link));
static factory(string $a_type)
Get list gui by type This method caches all the returned list guis.
ilAdvancedMDRecordGUI $record_gui
getAttendanceListUserData(int $a_user_id, array $a_filters)
static get(string $a_var)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
redirectToParentContentPageObject()
setPropertyForm(ilPropertyFormGUI $form)
string $requested_sort_by
ilRbacReview $rbac_review
__toUnix(array $date, array $time)
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
initCreateForm($a_new_type)
redirectByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
initContainer(bool $a_init_participants=false)
afterSaveCallback(ilObject $a_obj)
Custom callback after object is created (in parent container)
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.
static getItemsByEvent(int $event_id)
Get session material / event items.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
$location
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importEditFormPostValues()
Load edit form values from post.
static switchTemplate(int $a_ref_id, int $a_new_tpl_id)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static getInstance(int $a_ref_id)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
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...
updateSessionTypeObject()
change session type
string $requested_sort_order
static initDomEvent(?ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI DomEvent used in Services/Calendar, Modules/Session, Modules/Test (Jan 2022) ...
getDidacticTemplateVar(string $type)
Get didactic template setting from creation screen.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _gotoRepositoryNode(int $ref_id, string $cmd="")
static _lookupName(int $a_user_id)
lookup user name
showJoinRequestButton(?ilToolbarGUI $ilToolbar=null)
static _register(int $a_usr_id, int $a_event_id)
This class is used for integration of the booking manager as a service into other repository objects...
setParameterByClass(string $a_class, string $a_parameter, $a_value)
getRegisteredParticipants()
hasParticipated(int $a_usr_id)
loadLanguageModule(string $a_module)
Load language module.
getSideBlockTypes(bool $filter_repository_types=true)
infoScreenObject()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
createObject()
create new object form
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static updateServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
createRecurringSessions(bool $a_activate_lp=true)
static resetCaches()
Reset internal caches.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveObject(bool $a_redirect_on_success=true)
setRecurrence(int $a_type)
set type of recurrence public
static _lookupContainerSetting(int $a_id, string $a_keyword, string $a_default_value=null)
Base class for attendance lists.
unregisterObject(bool $a_refuse_participation=false)
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
setValue(string $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilEventItems $event_items
refuseParticipationObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parses the objects.xml it handles the xml-description of all ilias objects
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupTemplateId(int $a_ref_id)
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...
static http()
Fetches the global http state from ILIAS.
static _isRegistered(int $a_usr_id, int $a_event_id)
static _lookupTitle(int $obj_id)
setContent(string $a_html)
Sets content for standard template.
static _getInstanceByObjId(int $a_obj_id)
static getInstance(int $a_ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Refinery Factory $refinery
__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output=true)
initDidacticTemplate(ilPropertyFormGUI $form)
Class ilObjectGUI Basic methods of all Output classes.
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)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
getClassName(string $obj_name)
const REGISTRATION_LIMITED_USERS
static addListGUIActivationProperty(ilObjectListGUI $list_gui, array &$item)
Get timing details for list gui.
readMemberData(array $a_usr_ids)
Used for waiting list.
static deleteUserEntry(int $a_usr_id, int $a_obj_id)
getParentId(int $a_node_id)
get parent id of given node
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
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)
static initServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
showJoinRequestButtonInCalendar(ilToolbarGUI $a_ilToolbar)
show join request This method is only needed to keep showJoinRequestButton method protected...
form( $class_path, string $cmd)
static _unregister(int $a_usr_id, int $a_event_id)
ilEventParticipants $event_part
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)
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),'usr_data','lastname','usr_id') => sorts by lastname.
__showButton(string $cmd, string $text, string $target='')
const LP_MODE_DEACTIVATED
prepareOutput(bool $show_subobjects=true)
Error Handling & global info handling uses PEAR error class.
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateExcusedForUser(int $a_usr_id, bool $a_status)
__construct(Container $dic, ilPlugin $plugin)
const LP_CONTEXT_REPOSITORY
This class represents a text area property in a property form.
static _getInstance(int $a_obj_id)
getRolesOfRoleFolder(int $a_ref_id, bool $a_nonassignable=true)
get all roles of a role folder including linked local roles that are created due to stopped inheritan...
addItem(string $a_title, string $a_link, string $a_frame="", int $a_ref_id=0, ?string $type=null)
setInfoObject(ilInfoScreenGUI $info)
get info sections
confirmDeleteFilesObject()
const MESSAGE_TYPE_FAILURE
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
removeItems(array $a_items)
static _isOnList(int $a_usr_id, int $a_obj_id)
ilGlobalTemplateInterface $tpl
getSubTree(array $a_node, bool $a_with_data=true, array $a_type=[])
get all nodes in the subtree under specified node
static _lookupType(int $id, bool $reference=false)
static setUseRelativeDates(bool $a_status)
set use relative dates
modifyItemGUI(ilObjectListGUI $a_item_list_gui, array $a_item_data, bool $a_show_path)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjectService $object_service
addHeaderAction()
Add header action menu.
static makeClickable(string $a_text, bool $detectGotoLinks=false)
addItem(int $a_item_ref_id)
ilObjectDefinition $objDefinition
saveAndAssignMaterialsObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static set(string $a_var, $a_val)
Set a value.
checkAccessOfUser(int $a_user_id, 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) ...
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
printAttendanceListObject()
ILIAS HTTP Services $http
calculateDateList(ilDateTime $a_start, ilDateTime $a_end, int $a_limit=-1)
calculate date list
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
postUpdateMaterials()
redirect to list of materials without offset/page.
static _lookupLogin(int $a_user_id)
ILIAS FileUpload FileUpload $upload