19 declare(strict_types=1);
51 protected \ILIAS\DI\UIServices
$ui;
69 $this->ch_user_id = $a_user_id;
77 public function initialize(
int $a_calendar_presentation_type): void
81 $this->component_factory = $DIC[
'component.factory'];
82 $this->ui_factory = $DIC->ui()->factory();
83 $this->ui_renderer = $DIC->ui()->renderer();
84 $this->
ui = $DIC->ui();
85 $this->
ctrl = $DIC->ctrl();
86 $this->
lng = $DIC->language();
87 $this->
user = $DIC->user();
88 $this->tabs_gui = $DIC->tabs();
89 $this->
toolbar = $DIC->toolbar();
90 $this->presentation_type = $a_calendar_presentation_type;
91 $this->
logger = $DIC->logger()->cal();
92 $this->view_with_appointments =
false;
93 $this->main_tpl = $DIC->ui()->mainTemplate();
94 if ($this->presentation_type == self::CAL_PRESENTATION_DAY ||
95 $this->presentation_type == self::CAL_PRESENTATION_WEEK) {
97 $this->main_tpl->addJavaScript(
'assets/js/calendar_appointment.js');
99 $this->
http = $DIC->http();
105 if ($this->
http->wrapper()->query()->has(
'app_id')) {
106 return $this->
http->wrapper()->query()->retrieve(
116 if ($this->
http->wrapper()->query()->has(
'idate')) {
117 return $this->
http->wrapper()->query()->retrieve(
119 $this->
refinery->kindlyTo()->string()
127 if ($this->
http->wrapper()->query()->has(
'dt')) {
128 return $this->
http->wrapper()->query()->retrieve(
138 if ($this->
http->wrapper()->query()->has(
'bkid')) {
139 return $this->
http->wrapper()->query()->retrieve(
151 foreach ($events as $item) {
161 $user = $this->
user->getId();
163 switch ($this->presentation_type) {
164 case self::CAL_PRESENTATION_AGENDA_LIST:
197 $this->period_end_day = $end_date->get(
IL_CAL_DATE);
198 $schedule->setPeriod($this->seed, $end_date);
207 case self::CAL_PRESENTATION_DAY:
210 case self::CAL_PRESENTATION_WEEK:
213 case self::CAL_PRESENTATION_MONTH:
220 $schedule->addSubitemCalendars(
true);
221 $schedule->calculate();
222 return $schedule->getScheduledEvents();
232 $start = $item[
"dstart"];
233 $end = $item[
"dend"];
234 if ($item[
"fullday"]) {
241 return array(
"start" => $start,
"end" => $end);
251 $this->
ctrl->setReturn($this,
'');
257 foreach ($events as $item) {
262 $content = $this->
ctrl->getHTML($next_gui);
267 $modal = $this->ui_factory->modal()->roundtrip(
269 $this->ui_factory->legacy()->content($content)
270 )->withCancelButtonLabel($this->
lng->txt(
"close"));
271 echo $this->ui_renderer->renderAsync($modal);
286 string $a_title_forced =
"" 288 $this->
ctrl->setParameter($this,
"app_id", $a_calendar_entry->
getEntryId());
293 $this->
ctrl->setParameter($this,
'dt', $a_dstart);
294 $this->
ctrl->setParameter($this,
'seed', $this->seed->get(
IL_CAL_DATE));
295 $url = $this->
ctrl->getLinkTarget($this,
"getModalForApp",
"",
true,
false);
298 $this->
ctrl->setParameter($this,
'seed', $this->seed->get(
IL_CAL_DATE));
300 $modal = $this->ui_factory->modal()->roundtrip(
'', [])->withAsyncRenderUrl(
$url);
303 if ($this->presentation_type == self::CAL_PRESENTATION_DAY) {
304 $title = ($a_title_forced ==
"") ? $a_calendar_entry->
getPresentationTitle(
false) : $a_title_forced;
308 $comps = [$this->ui_factory->button()->shy($title,
"#")->withOnClick($modal->getShowSignal()), $modal];
309 return $this->ui_renderer->render($comps);
318 return $this->component_factory->getActivePluginsInSlot($a_slot_id);
323 $modal_title = $a_current_title;
327 $modal_title = ($new_title = $plugin->editModalTitle($a_current_title)) ? $new_title : $a_current_title;
345 $content = $a_content;
351 if ($new_title = $plugin->editShyButtonTitle()) {
358 if ($glyph = $plugin->addGlyph()) {
359 $a_tpl->
setVariable(
'EXTRA_GLYPH_BY_PLUGIN', $glyph);
362 if ($more_content = $plugin->addExtraContent()) {
363 $a_tpl->
setVariable(
'EXTRA_CONTENT_BY_PLUGIN', $more_content);
367 $html_content = $a_tpl->
get();
369 if ($new_content = $plugin->replaceContent($html_content)) {
370 $content = $new_content;
373 if ($content == $a_content) {
386 if ($settings->isBatchFileDownloadsEnabled()) {
388 if ($this->presentation_type == self::CAL_PRESENTATION_AGENDA_LIST) {
391 if ($this->view_with_appointments || $num_events) {
398 $add_button =
$f->button()->standard(
399 $this->
lng->txt(
"cal_download_files"),
415 $download_job->setEvents($this->
getEvents());
416 if ($download_job->run()) {
417 $this->main_tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'cal_download_files_started'),
true);
419 $this->
ctrl->redirect($this);
429 $bucket_title = $this->
lng->txt(
"cal_calendar_download");
431 switch ($this->presentation_type) {
432 case self::CAL_PRESENTATION_DAY:
433 $bucket_title .=
" " . $this->seed->get(
IL_CAL_DATE);
435 case self::CAL_PRESENTATION_WEEK:
437 $start = current($weekday_list);
438 $char = strtolower(mb_substr($this->
lng->txt(
"week"), 0, 1));
439 $bucket_title .=
" " . $start->get(
IL_CAL_DATE) .
" 1$char";
441 case self::CAL_PRESENTATION_MONTH:
443 $char = strtolower(mb_substr($this->
lng->txt(
"month"), 0, 1));
444 $bucket_title .=
" " . $year_month .
" 1" . $char;
446 case self::CAL_PRESENTATION_AGENDA_LIST:
447 $bucket_title .=
" " . $this->seed->get(
IL_CAL_DATE);
448 $get_list_option = intval($this->
user->getPref(
'cal_list_view'));
449 switch ($get_list_option) {
453 $char = strtolower(mb_substr($this->
lng->txt(
"month"), 0, 1));
454 $bucket_title .=
" 1$char";
457 $char = strtolower(mb_substr($this->
lng->txt(
"month"), 0, 1));
458 $bucket_title .=
" 6$char";
462 $char = strtolower(mb_substr($this->
lng->txt(
"week"), 0, 1));
463 $bucket_title .=
" 1$char";
467 return $bucket_title;
479 switch ($get_list_option) {
495 foreach ($events as $event) {
496 $event_start = $event[
'event']->getStart()->get(
IL_CAL_DATE);
addToolbarFileDownload()
Add download link to toolbar.
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static _getInstance(ilDate $seed, array $a_app)
get singleton instance
getModalForApp()
Get modal for appointment (see similar code in ilCalendarBlockGUI)
getActivePlugins(string $a_slot_id)
get(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilDate $seed, int $presentation_type)
getBucketTitle()
get proper label to add in the background task popover
getContentByPlugins(ilCalendarEntry $a_cal_entry, int $a_start_date, string $a_content, ilTemplate $a_tpl)
const CAL_PRESENTATION_UNDEFINED
static _buildWeekDayList(ilDate $a_day, int $a_weekstart)
build week day list public
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CAL_PRESENTATION_MONTH
setConsulationHoursUserId(int $a_user_id)
initAppointmentIdFromQuery()
setBucketTitle(string $a_title)
getLinkTarget(object $a_gui_obj, ?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.
Description of class class.
countEventsInView()
get the events starting between 2 dates based in seed + view options.
static _getInstanceByUserId(int $a_user_id)
getPresentationTitle(bool $a_shorten=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const CAL_PRESENTATION_AGENDA_LIST
static getPeriod()
needed in CalendarInboxGUI to get events using a proper period.
static http()
Fetches the global http state from ILIAS.
setVariable($variable, $value='')
Sets a variable value.
downloadFiles()
Download files related to the appointments showed in the current calendar view (day,week,month,list).
ilGlobalTemplateInterface $main_tpl
This is how the factory for UI elements looks.
initBookingUserFromQuery()
RefineryFactory $refinery
initInitialDateTimeFromQuery()
static initjQuery(?ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
const CAL_PRESENTATION_DAY
getModalTitleByPlugins(string $a_current_title)
initInitialDateFromQuery()
ilComponentFactory $component_factory
bool $view_with_appointments
initialize(int $a_calendar_presentation_type)
getAppointmentShyButton(ilCalendarEntry $a_calendar_entry, string $a_dstart, string $a_title_forced="")
const CAL_PRESENTATION_WEEK
getConsultationHoursUserId()
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.
Represents a list of calendar appointments (including recurring events) for a specific user in a give...