19 declare(strict_types=1);
43 protected \ILIAS\DI\UIServices
$ui;
68 $this->
ctrl = $DIC->ctrl();
69 $this->
lng = $DIC->language();
70 $this->
lng->loadLanguageModule(
'dateplaner');
72 $this->
renderer = $DIC->ui()->renderer();
73 $this->ui_factory = $DIC->ui()->factory();
75 $this->
http = $DIC->http();
77 $this->tpl = $DIC->ui()->mainTemplate();
78 $this->tabs_gui = $DIC->tabs();
79 $this->
user = $DIC->user();
80 $this->rbacsystem = $DIC->rbac()->system();
81 $this->
access = $DIC->access();
82 $this->
help = $DIC[
"ilHelp"];
83 $this->
ui = $DIC->ui();
84 $this->
toolbar = $DIC->toolbar();
85 $this->ref_id = $a_ref_id;
86 $this->category_id = 0;
87 if ($this->
http->wrapper()->query()->has(
'category_id')) {
88 $this->category_id = $this->
http->wrapper()->query()->retrieve(
94 $this->repository_mode = $a_ref_id > 0;
95 if ($this->repository_mode && $this->category_id === 0) {
98 $this->category_id = is_null($category) ? 0 : $category->getCategoryID();
100 $this->
ctrl->setParameter($this,
'category_id', $this->category_id);
104 $this->
ctrl->saveParameter($this,
'backpd');
109 if ($this->category_id > 0 && $this->ref_id <= 0) {
112 $vis->forceVisibility($this->category_id);
115 } elseif ($a_ref_id > 0) {
134 if ($this->
http->wrapper()->query()->has(
'app_id')) {
135 return $this->
http->wrapper()->query()->retrieve(
145 if ($this->
http->wrapper()->query()->has(
'category_id')) {
146 return $this->
http->wrapper()->query()->retrieve(
161 if ($this->
http->wrapper()->query()->has(
'ch_user_id')) {
162 $ch_user_id = $this->
http->wrapper()->query()->retrieve(
168 foreach ($this->cats->getCategoriesInfo() as $info) {
171 $info[
"obj_id"] == $ch_user_id
173 $v = $visibility->getVisible();
174 if (!in_array($info[
"cat_id"], $v)) {
175 $v[] = $info[
"cat_id"];
177 $visibility->showSelected($v);
179 $this->
ctrl->setParameterByClass(ilCalendarMonthGUI::class,
'category_id', $info[
'cat_id']);
183 $this->
ctrl->redirectToURL(
184 $this->
ctrl->getLinkTargetByClass(\ilCalendarMonthGUI::class,
'')
193 $this->cal_view = $this->cal_settings->getDefaultCal();
194 if ($this->
http->wrapper()->query()->has(
'cal_view')) {
195 $this->cal_view = $this->
http->wrapper()->query()->retrieve(
204 $cmd = $this->
ctrl->getCmd();
207 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
212 if (!$this->
ctrl->isAsynch()) {
216 $this->
help->setScreenIdComponent(
"cal");
218 case 'selectCHCalendarOfUser':
226 switch ($next_class) {
227 case 'ilcalendarinboxgui':
228 $this->tabs_gui->activateTab(
'cal_agenda');
233 $inbox_gui->addToolbarFileDownload();
238 case 'ilconsultationhoursgui':
239 $this->tabs_gui->activateTab(
'app_consultation_hours');
240 $this->tabs_gui->clearTargets();
243 $this->tabs_gui->setBackTarget(
244 $this->
lng->txt(
'cal_back_to_cal'),
253 case 'ilcalendarmonthgui':
254 $this->tabs_gui->activateTab(
'cal_agenda');
260 $month_gui->addToolbarFileDownload();
264 case 'ilcalendarweekgui':
265 $this->tabs_gui->activateTab(
'cal_agenda');
270 $week_gui->addToolbarFileDownload();
275 case 'ilcalendardaygui':
276 $this->tabs_gui->activateTab(
'cal_agenda');
281 $day_gui->addToolbarFileDownload();
285 case 'ilcalendarusersettingsgui':
286 $this->
ctrl->setReturn($this,
'');
287 $this->tabs_gui->activateTab(
'settings');
291 $this->
ctrl->forwardCommand($user_settings);
295 case 'ilcalendarappointmentgui':
296 $this->
ctrl->setReturn($this,
'');
297 $this->tabs_gui->activateTab((
string)
ilSession::get(
'cal_last_tab'));
300 $this->
ctrl->forwardCommand($app);
303 case 'ilcalendarsubscriptiongui':
304 $this->
ctrl->setReturn($this,
'');
305 $this->tabs_gui->activateTab(
"cal_agenda");
308 if ($this->
http->wrapper()->query()->has(
'ref_id')) {
309 $ref_id = $this->
http->wrapper()->query()->retrieve(
315 $this->
ctrl->forwardCommand($sub);
321 case 'ilcalendarcategorygui':
322 $this->
ctrl->setReturn($this,
'');
323 $this->tabs_gui->activateTab(
"cal_manage");
325 if ($this->
ctrl->forwardCommand($category)) {
333 case 'ilcalendarblockgui':
336 $side_cal->setForceMonthView(
true);
337 $this->
ctrl->forwardCommand($side_cal);
341 case 'ilpdcalendarblockgui':
344 $side_cal->setForceMonthView(
true);
345 $this->
ctrl->forwardCommand($side_cal);
349 case 'ilpublicuserprofilegui':
351 if ($this->
http->wrapper()->query()->has(
'user_id')) {
358 $html = $this->
ctrl->forwardCommand($user_profile);
359 $this->tpl->setContent($html);
363 $cmd = $this->
ctrl->getCmd(
"show");
387 $view_control =
$f->viewControl()->mode($actions,
"cal_change_calendar_view")->withActive($this->
lng->txt($a_active));
394 $extra_button_added =
false;
396 if ($this->category_id == 0 || $this->actions->checkAddEvent($this->category_id)) {
398 $extra_button_added =
true;
399 $add_button =
$f->button()->standard(
400 $this->
lng->txt(
"cal_add_appointment"),
407 if ($this->category_id > 0 && $this->actions->checkAddEvent($this->category_id)) {
408 if (!$extra_button_added) {
411 $add_button =
$f->button()->standard(
412 $this->
lng->txt(
"cal_import_appointments"),
421 if (strlen($next_class = $this->
ctrl->getNextClass())) {
425 strcasecmp($this->
ctrl->getCmdClass(), ilCalendarPresentationGUI::class) === 0 ||
426 $this->
ctrl->getCmdClass() ==
'' 441 switch ($this->cal_view) {
443 $class =
"ilcalendardaygui";
446 $class =
"ilcalendarweekgui";
449 $class =
"ilcalendarmonthgui";
453 $class =
"ilcalendarinboxgui";
459 $user_pref = $this->
user->getPref(
'cal_last_class');
460 $use_pref = $user_pref && ($user_pref !==
"") && !$this->
http->wrapper()->query()->has(
'cal_view');
462 return $use_pref ? $user_pref : $class;
469 if ($this->
ctrl->getCmdClass() == strtolower(get_class($this))) {
476 $this->
ctrl->saveParameter($this,
'seed');
477 $this->
ctrl->redirectByClass($class);
484 case 'ilcalendarmonthgui':
485 $this->
user->writePref(
'cal_last_class', $a_class);
489 $this->
ctrl->forwardCommand($month_gui);
492 case 'ilcalendarweekgui':
493 $this->
user->writePref(
'cal_last_class', $a_class);
497 $this->
ctrl->forwardCommand($week_gui);
500 case 'ilcalendardaygui':
501 $this->
user->writePref(
'cal_last_class', $a_class);
505 $this->
ctrl->forwardCommand($day_gui);
508 case 'ilcalendarinboxgui':
509 $this->
user->writePref(
'cal_last_class', $a_class);
513 $this->
ctrl->forwardCommand($inbox_gui);
521 $tpl =
new ilTemplate(
'tpl.cal_side_block.html',
true,
true,
'components/ILIAS/Calendar');
527 $side_cal->setParentGUI(
"ilCalendarPresentationGUI");
528 $side_cal->setForceMonthView(
true);
535 $this->tpl->setRightContent($tpl->
get());
545 $this->tabs_gui->clearTargets();
548 if ($this->
http->wrapper()->query()->has(
'backpd')) {
549 $this->tabs_gui->setBack2Target(
550 $this->
lng->txt(
'back_to_pd'),
551 $this->
ctrl->getLinkTargetByClass(ilDashboardGUI::class,
'jumpToCalendar')
555 $this->tabs_gui->setBackTarget(
557 $this->
ctrl->getParentReturn($this)
559 } elseif ($this->
http->wrapper()->query()->has(
'backvm')) {
561 $this->tabs_gui->setBackTarget(
562 $this->
lng->txt(
"back"),
567 $this->tabs_gui->setBackTarget(
568 $this->
lng->txt(
"back"),
574 $this->tabs_gui->addTab(
576 $this->
lng->txt(
"cal_agenda"),
580 if ($this->actions->checkShareCal($this->category_id)) {
581 $this->tabs_gui->addTab(
583 $this->
lng->txt(
"cal_share"),
587 if ($this->actions->checkSettingsCal($this->category_id)) {
588 $ctrl->
setParameterByClass(ilCalendarCategoryGUI::class,
'category_id', $this->category_id);
589 $this->tabs_gui->addTab(
591 $this->
lng->txt(
"settings"),
596 $this->tabs_gui->activateTab(
'cal_agenda');
607 $this->tabs_gui->clearTargets();
609 if ($this->
http->wrapper()->query()->has(
'backpd')) {
610 $this->tabs_gui->setBack2Target(
611 $this->
lng->txt(
'back_to_pd'),
612 $this->
ctrl->getLinkTargetByClass(ilDashboardGUI::class,
'jumpToCalendar')
616 $this->tabs_gui->setBackTarget(
618 $this->
ctrl->getParentReturn($this)
623 $category_id = $category->getCategoryID();
626 $this->tabs_gui->addTab(
628 $this->
lng->txt(
'cal_agenda'),
629 $this->
ctrl->getLinkTarget($this,
'')
633 if ($access->
checkAccess(
'edit_event',
'', $this->ref_id)) {
634 $this->
ctrl->setParameterByClass(ilCalendarCategoryGUI::class,
'category_id', $category_id);
635 $this->tabs_gui->addTab(
637 $this->
lng->txt(
'settings'),
638 $this->
ctrl->getLinkTargetByClass(ilCalendarCategoryGUI::class,
'edit')
640 $this->
ctrl->clearParameterByClass(ilCalendarCategoryGUI::class,
'category_id');
643 $this->tabs_gui->addTab(
645 $this->
lng->txt(
"cal_agenda"),
646 $this->
ctrl->getLinkTarget($this,
'')
650 $this->rbacsystem->checkAccess(
651 'add_consultation_hours',
656 $this->tabs_gui->addTab(
657 'app_consultation_hours',
658 $this->
lng->txt(
'app_consultation_hours'),
659 $this->
ctrl->getLinkTargetByClass(ilConsultationHoursGUI::class,
'')
662 $this->tabs_gui->addTarget(
664 $this->
ctrl->getLinkTargetByClass(
'ilCalendarCategoryGUI',
'manage')
666 $this->tabs_gui->addTarget(
'settings', $this->
ctrl->getLinkTargetByClass(
'ilCalendarUserSettingsGUI',
''));
672 if ($this->category_id) {
682 if ($this->category_id > 0) {
692 switch ($category->getType()) {
694 $header = $this->
lng->txt(
'cal_type_personal') .
": " . $category->getTitle();
698 $header = $this->
lng->txt(
'cal_type_system') .
": " . $category->getTitle();
702 $header = $this->
lng->txt(
'cal_type_' . $category->getObjType()) .
": " . $category->getTitle();
706 $header = str_replace(
709 $this->
lng->txt(
"cal_consultation_hours_for_user")
714 $header = $category->getTitle();
720 $dropDownItems = array();
723 $ctrl->
setParameterByClass(
"ilcalendarsubscriptiongui",
"category_id", $this->category_id);
724 $dropDownItems[] = $this->ui_factory->button()->shy(
725 $this->
lng->txt(
"cal_ical_url"),
730 if ($this->actions->checkDeleteCal($this->category_id)) {
732 $dropDownItems[] = $this->ui_factory->button()->shy(
733 $this->
lng->txt(
"cal_delete_cal"),
737 $dropDown = $this->ui_factory->dropdown()->standard($dropDownItems)
738 ->withAriaLabel($this->
lng->txt(
'actions'));
746 if ($this->
http->wrapper()->query()->has(
'seed')) {
747 $seed = $this->
http->wrapper()->query()->retrieve(
749 $this->
refinery->kindlyTo()->string()
773 $this->
ctrl->setParameter($this,
'seed', $this->seed->get(
IL_CAL_DATE));
783 $this->
ctrl->getCmdClass() ==
"ilcalendarappointmentgui" ||
784 $this->
ctrl->getCmdClass() ==
'ilconsultationhoursgui'
class for calendar categories
initialize(int $a_mode, int $a_source_ref_id=0, bool $a_use_cache=false, int $a_cat_id=0)
initialize visible categories
static get(string $a_var)
initCategoryIdFromQuery()
setParameterByClass(string $a_class, string $a_parameter, $a_value)
Sets a parameter for the given GUI class and appends the given value as well.
ilCalendarActions $actions
redirectWithParameters(string $class)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readLastClass()
Read last class from history.
initCalendarView()
Initialises calendar view according to given settings.
static _lookupFullname(int $a_user_id)
const MODE_PERSONAL_DESKTOP_MEMBERSHIP
getLinkTargetByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
Returns a link target for the given information.
getRequestedSeedAsString()
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) ...
initSeed()
init the seed date for presentations (month view, minicalendar)
static getInstance()
Get instance.
clearParameterByClass(string $a_class, string $a_parameter)
Removes a specific parameter of a specific class that is currently set or saved.
const CAL_SELECTION_MEMBERSHIP
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
Stores calendar categories.
const MODE_SINGLE_CALENDAR
static _getInstanceByObjId(int $a_obj_id)
get instance by obj_id
setVariable(string $variable, $value='')
Sets the given variable to the given value.
ilCalendarSettings $cal_settings
static _lookupObjId(int $ref_id)
Show calendar subscription info.
Calendar blocks, displayed on personal desktop.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
GUI class for public user profile presentation.
static http()
Fetches the global http state from ILIAS.
initAndRedirectToConsultationHours()
Init and redirect to consultation hours.
ilGlobalTemplateInterface $tpl
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
addStandardTabs()
add standard tabs
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
static _getInstance($a_usr_id=0)
get singleton instance
showViewSelection(string $a_active="cal_list")
static redirect(string $a_script)
initAppointmentIdFromQuery()
Administrate calendar appointments.
RefineryFactory $refinery
setHeaderActionMenu(string $a_header)
Set header action menu.
Calendar blocks, displayed in different contexts, e.g.
ilCalendarCategories $cats
Checks if certain actions can be performed.
addCategoryTabs()
Add tabs for ilCategoryGUI context This cannot be done there since many views (Day Week Agenda) are i...
static _lookupType(int $id, bool $reference=false)
static _getInstanceByUserId(int $a_user_id, int $a_ref_id=0)
forwardToClass(string $a_class)
static set(string $a_var, $a_val)
Set a value.
Administration, Side-Block presentation of calendar categories.
const MODE_PERSONAL_DESKTOP_ITEMS