19 declare(strict_types=1);
69 $this->
lng = $DIC->language();
70 $this->
lng->loadLanguageModule(
'dateplaner');
71 $this->
lng->loadLanguageModule(
'dash');
72 $this->
ctrl = $DIC->ctrl();
73 $this->tpl = $DIC->ui()->mainTemplate();
74 $this->
user = $DIC->user();
75 $this->
toolbar = $DIC->toolbar();
76 $this->
help = $DIC->help();
77 $this->
access = $DIC->access();
78 $this->rbacsystem = $DIC->rbac()->system();
79 $this->tree = $DIC->repositoryTree();
80 $this->
tabs = $DIC->tabs();
81 $this->user_id = $a_user_id;
83 $this->ref_id = $a_ref_id;
85 $this->
http = $DIC->http();
89 in_array($this->
ctrl->getNextClass(), array(
"",
"ilcalendarcategorygui")) &&
90 $this->
ctrl->getCmd() ==
"manage") {
92 $this->
ctrl->returnToParent($this);
96 $this->
ctrl->setParameter($this,
"category_id",
"");
97 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
"category_id",
"");
98 $this->
ctrl->redirect($this,
"manage");
107 if ($this->
http->wrapper()->query()->has(
'category_id')) {
108 return $this->
http->wrapper()->query()->retrieve(
121 if ($this->
http->wrapper()->post()->has(
'selected_cat_ids')) {
122 return $this->
http->wrapper()->post()->retrieve(
124 $this->
refinery->kindlyTo()->dictOf(
134 $next_class = $this->
ctrl->getNextClass($this);
135 $this->
ctrl->saveParameter($this,
'category_id');
136 $this->
ctrl->setParameter($this,
'seed', $this->seed->get(
IL_CAL_DATE));
138 if ($this->
http->wrapper()->query()->has(
'backvm')) {
139 $this->
ctrl->setParameter($this,
'backvm', 1);
141 switch ($next_class) {
142 case 'ilcalendarappointmentgui':
143 $this->
ctrl->setReturn($this,
'details');
146 if ($this->
http->wrapper()->query()->has(
'app_id')) {
147 $app_id = $this->
http->wrapper()->query()->retrieve(
153 $this->
ctrl->forwardCommand($app);
157 $cmd = $this->
ctrl->getCmd(
"show");
159 if (!in_array($cmd, array(
"details",
"askDeleteAppointments",
"deleteAppointments"))) {
167 if ($this->
http->wrapper()->query()->has(
'backvm')) {
168 $this->
ctrl->redirect($this,
'manage');
170 $this->
ctrl->returnToParent($this);
175 $this->
tabs->clearTargets();
176 $this->
tabs->setBackTarget($this->
lng->txt(
"cal_back_to_list"), $this->
ctrl->getLinkTarget($this,
'cancel'));
178 $ed_tpl =
new ilTemplate(
'tpl.edit_category.html',
true,
true,
'components/ILIAS/Calendar');
183 $ed_tpl->setVariable(
'EDIT_CAT', $form->
getHTML());
184 $this->tpl->setContent($ed_tpl->get());
187 protected function save(): void
192 $category->setTitle($form->
getInput(
'title'));
193 $category->setColor(
'#' . $form->
getInput(
'color'));
194 $category->setLocationType((
int) $form->
getInput(
'type_rl'));
195 $category->setRemoteUrl(trim($form->
getInput(
'remote_url')));
196 $category->setRemoteUser($form->
getInput(
'remote_user'));
197 $category->setRemotePass($form->
getInput(
'remote_pass'));
199 $category->setType((
int) $form->
getInput(
'type'));
200 $category->setObjId(0);
207 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
221 $this->tpl->setOnScreenMessage(
'failure', $e->getMessage());
230 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
231 $this->
ctrl->redirect($this,
'manage');
236 $this->
tabs->activateTab(
"edit");
239 if (!$this->category_id) {
240 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
241 $this->
ctrl->returnToParent($this);
244 if (!$this->actions->checkSettingsCal($this->category_id)) {
245 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
246 $this->
ctrl->returnToParent($this);
252 $this->tpl->setContent($form->
getHTML());
257 if (!$this->category_id) {
258 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
259 $this->
ctrl->returnToParent($this);
267 $info->setFormAction($this->
ctrl->getFormAction($this));
269 $info->addSection($this->
lng->txt(
'cal_cal_details'));
276 if (!$this->category_id) {
277 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
278 $this->
ctrl->returnToParent($this);
284 $this->tpl->setOnScreenMessage(
'failure', $e->getMessage(),
true);
285 $this->
ctrl->redirect($this,
'manage');
287 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'cal_cal_sync_success'),
true);
288 $this->
ctrl->redirect($this,
'manage');
297 $remote->import($category);
302 if (!$this->category_id) {
303 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
304 $this->
ctrl->returnToParent($this);
308 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'));
317 $category->setTitle($form->
getInput(
'title'));
319 $category->setColor(
'#' . $form->
getInput(
'color'));
321 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
322 if ($this->ref_id > 0) {
323 $this->
ctrl->returnToParent($this);
325 $this->
ctrl->redirect($this,
"manage");
329 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
343 if (!count($cat_ids)) {
344 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
348 $confirmation_gui->setFormAction($this->
ctrl->getFormAction($this));
349 $confirmation_gui->setHeaderText($this->
lng->txt(
'cal_del_cal_sure'));
350 $confirmation_gui->setConfirm($this->
lng->txt(
'delete'),
'delete');
351 $confirmation_gui->setCancel($this->
lng->txt(
'cancel'),
'manage');
353 foreach ($cat_ids as $cat_id) {
355 $confirmation_gui->addItem(
'category_id[]', (
string) $cat_id, $category->getTitle());
357 $this->tpl->setContent($confirmation_gui->getHTML());
360 protected function delete():
void 363 if ($this->
http->wrapper()->post()->has(
'category_id')) {
364 $category_ids = $this->
http->wrapper()->post()->retrieve(
366 $this->
refinery->kindlyTo()->dictOf(
372 if (!count($category_ids)) {
373 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
374 $this->
ctrl->redirect($this,
'manage');
377 foreach ($category_ids as $cat_id) {
382 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'cal_cal_deleted'),
true);
383 $this->
ctrl->redirect($this,
'manage');
390 if ($this->
http->wrapper()->post()->has(
'shown_cat_ids')) {
391 $shown_cat_ids = $this->
http->wrapper()->post()->retrieve(
393 $this->
refinery->kindlyTo()->dictOf(
399 $cat_ids = $cats->getCategories();
402 if ($this->obj_id > 0) {
403 $old_selection = $cat_visibility->getVisible();
405 $old_selection = $cat_visibility->getHidden();
411 foreach ($old_selection as $cat_id) {
412 if (!in_array($cat_id, $shown_cat_ids)) {
413 $new_selection[] = $cat_id;
416 foreach ($shown_cat_ids as $shown_cat_id) {
417 $shown_cat_id = (
int) $shown_cat_id;
418 if ($this->obj_id > 0) {
419 if (in_array($shown_cat_id, $selected_cat_ids)) {
420 $new_selection[] = $shown_cat_id;
423 if (!in_array($shown_cat_id, $selected_cat_ids)) {
424 $new_selection[] = $shown_cat_id;
429 if ($this->obj_id > 0) {
430 $cat_visibility->showSelected($new_selection);
432 $cat_visibility->hideSelected($new_selection);
434 $cat_visibility->save();
436 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
437 $this->
ctrl->returnToParent($this);
442 $this->
tabs->activateTab(
"share");
444 if (!$this->category_id) {
445 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
446 $this->
ctrl->returnToParent($this);
451 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'));
457 $this->
ctrl->saveParameter($this,
'category_id');
459 $table->setTitle($this->
lng->txt(
'cal_cal_shared_with'));
460 $table->setCalendarId($this->category_id);
464 $this->tpl->setContent($table->getHTML());
469 $this->
tabs->activateTab(
"share");
470 $this->
lng->loadLanguageModule(
'search');
472 if (!$this->category_id) {
473 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
474 $this->
ctrl->returnToParent($this);
476 $this->
ctrl->saveParameter($this,
'category_id');
480 if ($this->
http->wrapper()->post()->has(
'query')) {
481 $query = $this->
http->wrapper()->post()->retrieve(
483 $this->
refinery->kindlyTo()->string()
485 $type = $this->
http->wrapper()->post()->retrieve(
496 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_search_string'));
505 $query_parser->setMinWordLength(3);
506 $query_parser->parse();
509 case self::SEARCH_USER:
511 $search->enableActiveCheck(
true);
513 $search->setFields(array(
'login'));
514 $res = $search->performSearch();
515 $res_sum->mergeEntries(
$res);
517 $search->setFields(array(
'firstname'));
518 $res = $search->performSearch();
519 $res_sum->mergeEntries(
$res);
521 $search->setFields(array(
'lastname'));
522 $res = $search->performSearch();
523 $res_sum->mergeEntries(
$res);
528 case self::SEARCH_ROLE:
531 $search->setFilter(array(
'role'));
533 $res = $search->performSearch();
534 $res_sum->mergeEntries(
$res);
540 if (!count($res_sum->getResults())) {
541 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'search_no_match'));
547 case self::SEARCH_USER:
551 case self::SEARCH_ROLE:
569 if (!$this->category_id) {
570 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
571 $this->
ctrl->returnToParent($this);
574 if ($this->
http->wrapper()->post()->has(
'user_ids')) {
575 $user_ids = $this->
http->wrapper()->post()->retrieve(
577 $this->
refinery->kindlyTo()->dictOf(
582 if (!count($user_ids)) {
583 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
590 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'));
597 foreach ($user_ids as $user_id) {
602 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'cal_shared_selected_usr'));
613 if (!$this->category_id) {
614 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
615 $this->
ctrl->returnToParent($this);
619 if ($this->
http->wrapper()->post()->has(
'role_ids')) {
620 $role_ids = $this->
http->wrapper()->post()->retrieve(
622 $this->
refinery->kindlyTo()->dictOf(
628 if (!count($role_ids)) {
629 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
636 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'));
643 foreach ($role_ids as $role_id) {
646 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'cal_shared_selected_usr'));
652 if (!$this->category_id) {
653 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
654 $this->
ctrl->returnToParent($this);
657 if ($this->
http->wrapper()->post()->has(
'obj_ids')) {
658 $obj_ids = $this->
http->wrapper()->post()->retrieve(
660 $this->
refinery->kindlyTo()->dictOf(
666 if (!count($obj_ids)) {
667 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
674 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'));
681 foreach ($obj_ids as $obj_id) {
682 $shared->stopSharing($obj_id);
684 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'cal_unshared_selected_usr'));
691 $table->setTitle($this->
lng->txt(
'cal_share_search_usr_header'));
692 $table->setFormAction($this->
ctrl->getFormAction($this));
693 $table->setUsers($a_ids);
695 $this->tpl->setContent($table->getHTML());
701 $table->setTitle($this->
lng->txt(
'cal_share_search_role_header'));
702 $table->setFormAction($this->
ctrl->getFormAction($this));
703 $table->setRoles($a_ids);
706 $this->tpl->setContent($table->getHTML());
711 $this->
lng->loadLanguageModule(
'search');
712 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this));
715 if ($this->
http->wrapper()->post()->has(
'query')) {
716 $query = $this->
http->wrapper()->post()->retrieve(
718 $this->
refinery->kindlyTo()->string()
722 if ($this->
http->wrapper()->post()->has(
'query_type')) {
723 $query_type = $this->
http->wrapper()->post()->retrieve(
725 $this->
refinery->kindlyTo()->string()
730 $search->setValue($query);
731 $search->setSize(16);
732 $search->setMaxLength(128);
734 $this->
toolbar->addInputItem($search,
true);
738 self::SEARCH_USER => $this->
lng->txt(
'obj_user'),
739 self::SEARCH_ROLE => $this->
lng->txt(
'obj_role'),
743 $si->setOptions($options);
744 $si->setInfo($this->
lng->txt(
""));
745 $this->
toolbar->addInputItem($si);
746 $this->
toolbar->addFormButton($this->
lng->txt(
'search'),
"sharePerformSearch");
751 $this->
help->setScreenIdComponent(
"cal");
752 $this->
help->setScreenId(
"cal");
753 if ($a_mode ==
"edit") {
754 $this->
help->setSubScreenId(
"edit");
756 $this->
help->setSubScreenId(
"create");
766 $this->
form->setTitle($this->
lng->txt(
'cal_edit_category'));
767 $this->
ctrl->saveParameter($this, array(
'seed',
'category_id'));
768 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
770 $this->
form->addCommandButton(
'update', $this->
lng->txt(
'save'));
782 $this->editable =
true;
784 $this->
ctrl->saveParameter($this, array(
'category_id'));
785 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
786 $this->
form->setTitle($this->
lng->txt(
'cal_add_category'));
787 $this->
form->addCommandButton(
'save', $this->
lng->txt(
'save'));
791 $this->
form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
795 if ($a_mode ==
'edit') {
797 $title->setDisabled(
true);
800 $title->setRequired(
true);
801 $title->setMaxLength(64);
803 $title->setValue($category->getTitle());
804 $this->
form->addItem($title);
806 if ($a_mode ==
'create' and $this->rbacsystem->checkAccess(
811 $type->
setValue((
string) $category->getType());
812 $type->setRequired(
true);
815 $type->addOption($opt);
818 $type->addOption($opt);
819 $type->setInfo($this->
lng->txt(
'cal_type_info'));
820 $this->
form->addItem($type);
825 $color->
setValue($category->getColor());
827 $color->setDisabled(
true);
829 $color->setRequired(
true);
830 $this->
form->addItem($color);
833 $location->setDisabled($a_mode ==
'edit');
835 $this->
lng->txt(
'cal_type_local'),
840 $this->
lng->txt(
'cal_type_remote'),
844 $location->setValue((
string) $category->getLocationType());
847 $url->setDisabled($a_mode ==
'edit');
848 $url->setValue($category->getRemoteUrl());
849 $url->setMaxLength(500);
851 $url->setRequired(
true);
852 $location_remote->addSubItem(
$url);
855 $user->setDisabled($a_mode ==
'edit');
856 $user->setValue($category->getRemoteUser());
857 $user->setMaxLength(50);
859 $user->setRequired(
false);
860 $location_remote->addSubItem($user);
864 $pass->setValue($category->getRemotePass());
865 $pass->setMaxLength(50);
867 $pass->setRetype(
false);
868 $pass->setInfo($this->
lng->txt(
'remote_pass_info'));
869 $location_remote->addSubItem($pass);
875 $this->
form->addItem($ne);
882 $this->
form->addItem($ne);
891 if (!$this->category_id) {
892 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
893 $this->
ctrl->returnToParent($this);
902 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
903 $this->
ctrl->returnToParent($this);
906 $status->decline($this->category_id);
908 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
909 $this->
ctrl->redirect($this,
'manage');
915 $table_gui->setTitle($this->
lng->txt(
'cal_assigned_appointments'));
916 $table_gui->setAppointments(
921 return $table_gui->getHTML();
927 if ($this->
http->wrapper()->post()->has(
'appointments')) {
928 $appointments = $this->
http->wrapper()->post()->retrieve(
930 $this->
refinery->kindlyTo()->dictOf(
935 if (!count($appointments)) {
936 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
942 $this->
ctrl->setParameter($this,
'category_id', $this->category_id);
943 $confirmation_gui->setFormAction($this->
ctrl->getFormAction($this));
944 $confirmation_gui->setHeaderText($this->
lng->txt(
'cal_del_app_sure'));
945 $confirmation_gui->setConfirm($this->
lng->txt(
'delete'),
'deleteAppointments');
946 $confirmation_gui->setCancel($this->
lng->txt(
'cancel'),
'details');
948 foreach ($appointments as $app_id) {
950 $confirmation_gui->addItem(
'appointments[]', (
string) $app_id, $app->getTitle());
952 $this->tpl->setContent($confirmation_gui->getHTML());
958 if ($this->
http->wrapper()->post()->has(
'appointments')) {
959 $appointments = $this->
http->wrapper()->post()->retrieve(
961 $this->
refinery->kindlyTo()->dictOf(
966 if (!count($appointments)) {
967 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
971 foreach ($appointments as $app_id) {
976 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'));
983 return $this->
ctrl->getHTML($block_gui);
988 $this->
lng->loadLanguageModule(
'pd');
990 $tpl =
new ilTemplate(
'tpl.calendar_selection.html',
true,
true,
'components/ILIAS/Calendar');
999 $this->
ctrl->setParameter($this,
'seed', $this->seed->get(
IL_CAL_DATE));
1000 $tpl->
setVariable(
'HHREF', $this->
ctrl->getLinkTarget($this,
'switchCalendarMode'));
1007 $this->
ctrl->setParameter($this,
'seed', $this->seed->get(
IL_CAL_DATE));
1008 $tpl->
setVariable(
'HHREF', $this->
ctrl->getLinkTarget($this,
'switchCalendarMode'));
1024 if ($this->
http->wrapper()->query()->has(
'calendar_mode')) {
1025 $mode = $this->
http->wrapper()->query()->retrieve(
1033 $this->
ctrl->returnToParent($this);
1038 $this->editable =
false;
1039 $this->visible =
false;
1040 $this->importable =
false;
1045 switch ($cat->getType()) {
1048 if ($cat->getObjId() == $this->
user->getId()) {
1049 $this->visible =
true;
1050 $this->editable =
true;
1051 $this->importable =
true;
1052 } elseif (isset($shared[$cat->getCategoryID()])) {
1053 $this->visible =
true;
1056 $this->importable = $shared_cal->isEditableForUser($this->
user->getId());
1061 $this->importable = $this->editable = $this->rbacsystem->checkAccess(
1065 $this->visible =
true;
1069 $this->editable =
false;
1072 foreach ($refs as $ref) {
1073 if ($this->
access->checkAccess(
'read',
'', $ref)) {
1074 $this->visible =
true;
1076 if ($this->
access->checkAccess(
'edit_event',
'', $ref)) {
1077 $this->importable =
true;
1079 if ($this->
access->checkAccess(
'write',
'', $ref)) {
1080 $this->editable =
true;
1087 $this->editable = $this->
user->getId() == $cat->getCategoryID();
1088 $this->visible =
true;
1089 $this->importable =
false;
1099 if (!$this->visible) {
1100 $ilErr->raiseError($this->
lng->txt(
'permission_denied'),
$ilErr->FATAL);
1116 $tpl =
new ilTemplate(
'tpl.cal_reference_links.html',
true,
true,
'components/ILIAS/Calendar');
1119 $parent_ref_id = $this->tree->getParentId($ref_id);
1129 $tpl->
setVariable(
'PARENT_HREF', ilLink::_getLink($parent_ref_id));
1131 $tpl->
setVariable(
'HREF', ilLink::_getLink($ref_id));
1137 protected function manage($a_reset_offsets =
false): void
1143 if ($a_reset_offsets) {
1144 $table_gui->resetToDefaults();
1147 $table_gui->parse();
1149 $toolbar =
new ilToolbarGui();
1150 $this->
ctrl->setParameter($this,
'backvm', 1);
1151 $toolbar->
addButton($this->
lng->txt(
"cal_add_calendar"), $this->
ctrl->getLinkTarget($this,
"add"));
1153 $this->tpl->setContent($toolbar->getHTML() . $table_gui->getHTML());
1158 if (!$this->category_id) {
1159 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
1160 $this->
ctrl->returnToParent($this);
1162 $this->
ctrl->setParameter($this,
'category_id', $this->category_id);
1169 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
1170 $this->
ctrl->returnToParent($this);
1173 $this->
tabs->clearTargets();
1174 $this->
tabs->setBackTarget($this->
lng->txt(
"back"), $this->
ctrl->getLinkTarget($this,
"cancel"));
1179 $this->tpl->setContent($form->
getHTML());
1185 $form->
setTitle($this->
lng->txt(
'cal_import_tbl'));
1191 $ics->setSuffixes(array(
'ics'));
1192 $ics->setInfo($this->
lng->txt(
'cal_import_file_info'));
1205 $this->tpl->setOnScreenMessage(
'success', sprintf($this->
lng->txt(
'cal_imported_success'), $num),
true);
1206 $this->
ctrl->redirect($this,
'cancel');
1209 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'cal_err_file_upload'),
true);
1210 $this->
ctrl->returnToParent($this);
1217 $parser->setCategoryId($category_id);
1220 return $assigned_after - $assigned_before;
1225 $this->
tabs->addSubTab(
1227 $this->
lng->txt(
"calendar"),
1228 $this->
ctrl->getLinkTarget($this,
"manage")
1232 $calendars = $status->getOpenInvitations();
1234 $this->
tabs->addSubTab(
1236 $this->
lng->txt(
"cal_shared_calendars"),
1237 $this->
ctrl->getLinkTarget($this,
"invitations")
1240 $this->
tabs->activateSubTab($a_active);
1248 $this->tpl->setContent($table->getHTML());
1254 if ($this->
http->wrapper()->post()->has(
'cal_ids')) {
1255 $cal_ids = $this->
http->wrapper()->post()->retrieve(
1257 $this->
refinery->kindlyTo()->dictOf(
1262 if (!count($cal_ids)) {
1263 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
1264 $this->
ctrl->returnToParent($this);
1269 foreach ($cal_ids as $calendar_id) {
1271 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'));
1272 $this->
ctrl->returnToParent($this);
1275 $status->accept($calendar_id);
1277 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1278 $this->
ctrl->redirect($this,
'invitations');
1289 if ($this->
http->wrapper()->post()->has(
'cal_ids')) {
1290 $cal_ids = $this->
http->wrapper()->post()->retrieve(
1292 $this->
refinery->kindlyTo()->dictOf(
1297 if (!count($cal_ids)) {
1298 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
1299 $this->
ctrl->returnToParent($this);
1303 foreach ($cal_ids as $calendar_id) {
1305 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
1306 $this->
ctrl->returnToParent($this);
1309 $status->decline($calendar_id);
1311 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1312 $this->
ctrl->redirect($this,
'invitations');
static get(string $a_var)
This class represents an option in a radio group.
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showUserList(array $a_ids=array())
initSelectedCategoryIdsFromPost()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
appendCalendarSelection()
touchBlock(string $block)
overwrites ITX::touchBlock.
add(?ilPropertyFormGUI $form=null)
addReferenceLinks($a_obj_id)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _getAllReferences(int $id)
get all reference ids for object ID
Stores status (accepted/declined) of shared calendars.
static getInstance()
Get instance.
ilGlobalTemplateInterface $tpl
show list of alle calendars to manage
const CAL_SELECTION_MEMBERSHIP
ilCalendarActions $actions
__construct(int $a_user_id, ilDate $seed, int $a_ref_id=0)
Constructor.
declineShared()
accept shared calendar protected
Stores calendar categories.
Reader for remote ical calendars.
static _getUserSearchInstance(ilQueryParser $query_parser)
BlockGUI class calendar selection.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
Handles shared calendars.
isEditableForUser(int $a_user_id)
doSynchronisation(ilCalendarCategory $category)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
showAssignedAppointments()
static http()
Fetches the global http state from ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
static _lookupTitle(int $obj_id)
static _deleteByAppointmentId(int $a_app_id)
Delete appointment assignment.
const CAL_SELECTION_ITEMS
shareAssign($a_editable=false)
static isSharedWithUser(int $a_usr_id, int $a_calendar_id)
is shared with user
shareAssignRolesEditable()
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
static _getInstance($a_usr_id=0)
get singleton instance
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
static getSharedCalendarsForUser(int $a_usr_id=0)
doImportFile($file, $category_id)
form( $class_path, string $cmd, string $submit_caption="")
edit(?ilPropertyFormGUI $form=null)
shareAssignEditable()
Share with write access.
Administrate calendar appointments.
shareAssignRoles(bool $a_editable=false)
showRoleList(array $a_ids=array())
importAppointments(?ilPropertyFormGUI $form=null)
static _getAssignedAppointments(array $a_cat_id)
Get assigned apointments.
initFormCategory(string $a_mode)
initCategoryIdFromQuery()
Checks if certain actions can be performed.
static lookupNumberOfAssignedAppointments(array $a_cat_ids)
static _lookupType(int $id, bool $reference=false)
static _getInstanceByUserId(int $a_user_id, int $a_ref_id=0)
static clear(string $a_var)
RefineryFactory $refinery
static set(string $a_var, $a_val)
Set a value.
manage($a_reset_offsets=false)
Administration, Side-Block presentation of calendar categories.
addSubTabs(string $a_active)