19 declare(strict_types=1);
70 $this->
logger = $DIC->logger()->cal();
71 $this->
tabs = $DIC->tabs();
72 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
73 $this->
ui = $DIC->ui();
74 $this->
help = $DIC->help();
75 $this->
http = $DIC->http();
78 $this->
lng->loadLanguageModule(
"dateplaner");
79 $this->
help->addHelpSection(
"cal_block");
81 $this->
ctrl->saveParameter($this,
'bkid');
87 $this->allow_moving =
false;
89 $params = $DIC->http()->request()->getQueryParams();
90 $this->requested_cal_agenda_per = (
int) (
$params[
'cal_agenda_per'] ??
null);
95 } elseif (strlen($seed_str)) {
98 $seed_str = date(
'Y-m-d', time());
104 $mode = $this->
user->getPref(
"il_pd_cal_mode");
105 $this->display_mode = $mode ?:
"mmon";
107 if ($this->display_mode !==
"mmon") {
114 if ($this->
http->wrapper()->query()->has(
'bkid')) {
115 return $this->
http->wrapper()->query()->retrieve(
125 if ($this->
http->wrapper()->query()->has(
'seed')) {
126 return $this->
http->wrapper()->query()->retrieve(
128 $this->
refinery->kindlyTo()->string()
136 if ($this->
http->wrapper()->query()->has(
'app_id')) {
137 return $this->
http->wrapper()->query()->retrieve(
147 if ($this->
http->wrapper()->query()->has(
'dt')) {
148 return $this->
http->wrapper()->query()->retrieve(
161 return ($this->
settings->getShowWeeks() && $this->user_settings->getShowWeeks());
169 return self::$block_type;
182 $this->parent_gui = $a_val;
192 $this->force_month_view = $a_val;
194 $this->display_mode =
"mmon";
211 $ilCtrl = $DIC->ctrl();
212 $cmd_class = $ilCtrl->getCmdClass();
214 $cmd = $ilCtrl->getCmd();
216 if ($cmd_class ==
"ilcalendarappointmentgui" ||
217 $cmd_class ==
"ilconsultationhoursgui" ||
218 $cmd ==
'showCalendarSubscription') {
226 $next_class = $this->
ctrl->getNextClass();
227 $cmd = $this->
ctrl->getCmd(
"getHTML");
231 switch ($next_class) {
232 case "ilcalendarappointmentgui":
235 $this->
ctrl->forwardCommand($app_gui);
238 case "ilconsultationhoursgui":
240 $this->
ctrl->forwardCommand($hours);
243 case "ilcalendarappointmentpresentationgui":
249 'Invalid appointment ID for ref_id: ' .
251 (
string) $this->requested_ref_id
259 case "ilcalendarmonthgui":
260 $this->
tabs->setSubTabActive(
'app_month');
262 $this->
ctrl->forwardCommand($month_gui);
266 return $this->$cmd();
273 $target_class = array();
275 $target_class = array(
"ildashboardgui",
"ilcalendarpresentationgui");
279 $target_class = array(
"ilobjcoursegui",
"ilcalendarpresentationgui");
283 $target_class = array(
"ilobjgroupgui",
"ilcalendarpresentationgui");
287 return $target_class;
303 $a_tpl->
setVariable(
'TXT_WEEKDAY', $this->
lng->txt(
"cal_week_abbrev"));
306 for ($i = $this->user_settings->getWeekStart(); $i < (7 + $this->user_settings->getWeekStart()); $i++) {
315 $disable_empty =
true;
318 $disable_empty =
false;
321 $this->scheduler->addSubitemCalendars(
true);
322 $this->scheduler->calculate();
328 $this->user_settings->getWeekStart()
332 $events = $this->scheduler->getByDay($date, $this->
user->getTimeZone());
333 $has_events = (bool) count($events);
334 if ($has_events || !$disable_empty) {
340 if ($disable_empty) {
342 $a_tpl->
setVariable(
'DAY_CLASS',
'calminiinactive');
344 $week_has_events =
true;
345 foreach ($events as $event) {
347 if ($booking->hasBooked($event[
'event']->getEntryId())) {
353 } elseif ($has_events) {
354 $week_has_events =
true;
364 $last_gui = end(
$path);
365 $this->
ctrl->setParameterByClass($last_gui,
'seed', $date->get(
IL_CAL_DATE));
366 if ($agenda_view_type = $this->requested_cal_agenda_per) {
367 $this->
ctrl->setParameterByClass($last_gui,
"cal_agenda_per", $agenda_view_type);
369 $a_tpl->
setVariable(
'OPEN_DAY_VIEW', $this->
ctrl->getLinkTargetByClass($this->getTargetGUIClassPath(),
''));
389 if ($counter and !($counter % 7)) {
402 $week_has_events =
false;
406 if ($a_include_view_ctrl) {
418 $first_of_month = substr($this->seed->get(
IL_CAL_DATE), 0, 7) .
"-01";
424 $prev_link = $this->
ctrl->getLinkTarget($this,
"setSeed",
"",
true);
428 $next_link = $this->
ctrl->getLinkTarget($this,
"setSeed",
"",
true);
430 $this->
ctrl->setParameter($this,
'seed',
"");
436 $b1 =
$ui->factory()->button()->standard($this->
lng->txt(
"previous"),
"#")->
withOnLoadCode(
function (
$id) use (
441 "$('#" .
$id .
"').click(function() { ilBlockJSHandler('block_" . $blockgui->getBlockType() .
442 "_" . $blockgui->getBlockId() .
"','" . $prev_link .
"'); return false;});";
446 $this->
ctrl->clearParameterByClass(
"ilcalendarblockgui",
'seed');
447 $month_link = $this->
ctrl->getLinkTarget($this,
"setSeed",
"",
true,
false);
448 $seed_parts = explode(
"-", $this->seed->get(
IL_CAL_DATE));
449 $b2 =
$ui->factory()->button()->month($seed_parts[1] .
"-" . $seed_parts[0])->withOnLoadCode(
function (
$id) use (
453 return "$('#" .
$id .
"').on('il.ui.button.month.changed', function(el, id, month) { var m = month.split('-'); ilBlockJSHandler('block_" . $blockgui->getBlockType() .
454 "_" . $blockgui->getBlockId() .
"','" . $month_link .
"' + '&seed=' + m[1] + '-' + m[0] + '-01'); return false;});";
462 "$('#" .
$id .
"').click(function() { ilBlockJSHandler('block_" . $blockgui->getBlockType() .
463 "_" . $blockgui->getBlockId() .
"','" . $next_link .
"'); return false;});";
466 return $ui->factory()->viewControl()->section($b1, $b2, $b3);
482 $obj_id = $ilObjDataCache->lookupObjId((
int) $this->requested_ref_id);
484 $users = array_unique(array_merge($participants->getTutors(), $participants->getAdmins()));
492 $next_app = end($appointments);
493 reset($appointments);
495 foreach ($appointments as $entry) {
501 if (!in_array($obj_id, $booking_entry->getTargetObjIds())) {
505 if (!$booking_entry->isAppointmentBookableForUser($entry->getEntryId(),
$user->
getId())) {
513 $this->
ctrl->setParameterByClass(end(
$path),
"ch_user_id", $user_id);
516 $this->cal_footer[] = array(
517 'link' => $this->
ctrl->getLinkTargetByClass(
518 $this->getTargetGUIClassPath(),
519 'selectCHCalendarOfUser' 521 'txt' => str_replace(
524 $this->
lng->txt(
"cal_consultation_hours_for_user")
529 $last_gui = end(
$path);
530 $this->
ctrl->setParameterByClass($last_gui,
"ch_user_id",
"");
531 $this->
ctrl->setParameterByClass($last_gui,
"bkid", $bkid);
532 $this->
ctrl->setParameterByClass($last_gui,
"seed", $this->seed->get(
IL_CAL_DATE));
534 $this->
ctrl->setParameter($this,
"bkid",
"");
535 $this->
ctrl->setParameter($this,
'seed',
'');
537 $this->
ctrl->setParameter($this,
"bkid",
"");
539 $this->
ctrl->getLinkTarget($this),
540 $this->
lng->txt(
"back")
548 $this->
ctrl->getLinkTarget($this,
"editSettings"),
549 $this->
lng->txt(
"settings")
554 $ret = parent::getHTML();
558 if ($this->
ctrl->isAsynch()) {
559 $f = $this->
ui->factory()->legacy()->content(
"");
560 $ret .= $this->
ui->renderer()->renderAsync(
$f);
562 if (count($this->modals) > 0) {
563 if ($this->
ctrl->isAsynch()) {
564 $ret .= $this->
ui->renderer()->renderAsync($this->modals);
566 $ret .= $this->
ui->renderer()->render($this->modals);
577 $events = $schedule->getChangedEvents(
true);
579 $this->
ctrl->setParameterByClass(
'ilcalendarinboxgui',
'changed', 1);
580 $link =
'<a href=' . $this->
ctrl->getLinkTargetByClass(
'ilcalendarinboxgui',
'') .
'>';
581 $this->
ctrl->setParameterByClass(
'ilcalendarinboxgui',
'changed',
'');
582 $text =
'<div class="small">' . (count($events)) .
" " . $this->
lng->txt(
"cal_changed_events_header") .
"</div>";
585 return $link . $text . $end_link;
594 } elseif (!$cats->getMode()) {
597 (
int) $this->requested_ref_id,
605 $this->
tabs->clearSubTabs();
614 if ($this->
ctrl->isAsynch()) {
624 $this->
ctrl->returnToParent($this);
634 $this->
ctrl->getLinkTarget($this,
"setPdModeEvents"),
635 $this->
lng->txt(
"cal_upcoming_events_header"),
642 $this->
ctrl->getLinkTarget($this,
"setPdModeMonth"),
643 $this->
lng->txt(
"app_month"),
644 $this->
ctrl->getLinkTarget($this,
"setPdModeMonth",
"",
true)
649 $this->
ctrl->setParameterByClass(
'ilcalendarpresentationgui',
'seed',
'');
651 $this->
ctrl->getLinkTargetByClass($this->getTargetGUIClassPath(),
""),
652 $this->
lng->txt(
"cal_open_calendar")
655 if ($this->
access->checkAccess(
'edit_event',
'', (
int) $this->requested_ref_id)) {
656 $this->
ctrl->setParameter($this,
"add_mode",
"");
658 $this->
ctrl->getLinkTargetByClass(
"ilCalendarAppointmentGUI",
"add"),
659 $this->
lng->txt(
"add_appointment")
661 $this->
ctrl->setParameter($this,
"add_mode",
"");
671 $this->
user->writePref(
"il_pd_cal_mode",
"evt");
672 $this->display_mode =
"evt";
674 if ($this->
ctrl->isAsynch()) {
678 $this->
ctrl->returnToParent($this);
686 $this->
user->writePref(
"il_pd_cal_mode",
"mmon");
687 $this->display_mode =
"mmon";
689 if ($this->
ctrl->isAsynch()) {
693 $this->
ctrl->redirectByClass(
"ildashboardgui",
"show");
701 array_key_exists(
'event', $event) &&
703 $event[
'event']->getEntryId() === $a_appointment_id
716 $schedule->addSubitemCalendars(
true);
717 $schedule->setEventsLimit(20);
718 $schedule->calculate();
720 return $schedule->getScheduledEvents();
733 if (
sizeof($events)) {
734 foreach ($events as $item) {
735 $this->
ctrl->setParameter($this,
"app_id", $item[
"event"]->getEntryId());
736 $this->
ctrl->setParameter($this,
'dt', $item[
'dstart']);
737 $url = $this->
ctrl->getLinkTarget($this,
"getModalForApp",
"",
true,
false);
740 $modal =
$f->modal()->roundtrip(
'', [])->withAsyncRenderUrl(
$url);
744 $shy =
$f->button()->shy(
745 $item[
"event"]->getPresentationTitle(),
747 )->withOnClick($modal->getShowSignal());
751 "title" => $item[
"event"]->getPresentationTitle(),
753 "shy_button" => $shy,
779 $start = $item[
"dstart"];
780 $end = $item[
"dend"];
781 if ($item[
"fullday"]) {
788 return array(
"start" => $start,
"end" => $end);
801 $r =
$ui->renderer();
805 foreach ($events as $item) {
811 $content = $this->
ctrl->getHTML($next_gui);
813 $modal =
$f->modal()->roundtrip(
815 $f->legacy()->content($content)
817 echo
$r->renderAsync($modal);
828 return parent::getViewControlsForPanel();
837 "tpl.calendar_block.html",
840 "components/ILIAS/Calendar" 845 $panel_tpl = new \ilTemplate(
846 'tpl.cal_block_panel.html',
849 'components/ILIAS/Calendar' 854 return $tpl->
get() . $panel_tpl->get();
863 if (isset($data[
"modal"])) {
864 $this->modals[] = $data[
"modal"];
866 if (isset($data[
"shy_button"])) {
867 return $factory->item()->standard($data[
"shy_button"])->withDescription($data[
"date"]);
869 return $factory->item()->standard($data[
"date"]);
879 return $this->
lng->txt(
"cal_no_events_block");
889 $ui_factory = $DIC->ui()->factory();
890 $ui_renderer = $DIC->ui()->renderer();
893 $gui_path[] = strtolower(\ilCalendarSubscriptionGUI::class);
894 $url = $this->
ctrl->getLinkTargetByClass($gui_path,
'getModalForSubscription',
"",
true,
false);
896 $roundtrip_modal = $ui_factory->modal()->roundtrip(
'', [])->withAsyncRenderUrl(
$url);
898 $standard_button = $ui_factory->button()->standard($this->
lng->txt(
'btn_ical'),
'')->withOnClick(
899 $roundtrip_modal->getShowSignal()
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static _getInstance(ilDate $seed, array $a_app)
get singleton instance
initBookingUserFromQuery()
static get(string $a_var)
ilCalendarUserSettings $user_settings
ilCalendarSettings $settings
getDatesForItem(array $item)
Get start/end date for item.
static _buildMonthDayList(int $a_month, int $a_year, int $weekstart)
Build a month day list.
get(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getShowWeeksColumn()
Show weeks column.
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
static _lookupFullname(int $a_user_id)
static getScreenMode()
Get Screen Mode for current command.
setBlockId(string $a_block_id="0")
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Interface Observer Contains several chained tasks and infos about them.
setEnableNumInfo(bool $a_enablenuminfo)
initAppointmentIdFromQuery()
__construct()
Constructor.
static string $block_type
getNoItemFoundContent()
No item entry.
const MODE_REPOSITORY_CONTAINER_ONLY
setParentGUI(string $a_val)
getEventByAppointmentId(int $a_appointment_id)
getModalForApp()
Get modal for appointment (see similar code in ilCalendarAgendaListGUI) todo use all this methods fro...
getHTML()
Get bloch HTML code.
static _getInstanceByUserId(int $a_user_id)
withOnLoadCode(Closure $binder)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _numericDayToString(int $a_day, bool $a_long=true, ?ilLanguage $lng=null)
ilObjectDataCache $obj_data_cache
static http()
Fetches the global http state from ILIAS.
RefineryFactory $refinery
setVariable($variable, $value='')
Sets a variable value.
static _getInstanceByObjId(int $a_obj_id)
addMiniMonth(ilTemplate $a_tpl, bool $a_include_view_ctrl=false)
Add mini version of monthly overview (Maybe extracted to another class, if used in pd calendar tab...
getViewControlsForPanel()
ilCalendarSchedule $scheduler
static _getInstance($a_usr_id=0)
get singleton instance
static getAppointments(int $a_user_id)
Get all appointments.
addSubscriptionButton(ilTemplate $panel_template)
Add subscription button.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setForceMonthView(bool $a_val)
This describes a Section Control.
Administrate calendar appointments.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Calendar blocks, displayed in different contexts, e.g.
__construct(Container $dic, ilPlugin $plugin)
static lookupBookableUsersForObject(array $a_obj_id, array $a_user_ids)
Consultation hours are offered if 1) consultation hour owner is admin or tutor and no object assignme...
setTitle(string $a_title)
static _equals(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
Check if two date are equal.
getListItemForData(array $data)
This class represents a block method of a block.
addBlockCommand(string $a_href, string $a_text, string $a_onclick="", ?RoundTrip $modal=null)
static _lookupType(int $id, bool $reference=false)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getProperty(string $a_property)
setPresentation(int $type)
static set(string $a_var, $a_val)
Set a value.
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.
static _isToday(ilDateTime $date)
Represents a list of calendar appointments (including recurring events) for a specific user in a give...
int $requested_cal_agenda_per