ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCalendarBlockGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
34 {
35  protected array $cal_footer = [];
38  protected HttpServices $http;
40  protected string $display_mode = '';
41  protected ilLogger $logger;
42 
43  public static string $block_type = "cal";
44 
45  protected ilTabsGUI $tabs;
47  protected ilHelpGUI $help;
48 
49 
50  protected ilDate $seed;
53 
54  protected string $parent_gui = ilColumnGUI::class;
55  protected bool $force_month_view = false;
56 
58  protected array $modals = [];
59 
64  public function __construct()
65  {
66  global $DIC;
67 
69 
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();
76  $this->refinery = $DIC->refinery();
77 
78  $this->lng->loadLanguageModule("dateplaner");
79  $this->help->addHelpSection("cal_block");
80 
81  $this->ctrl->saveParameter($this, 'bkid');
82  $this->setBlockId((string) $this->ctrl->getContextObjId());
83  $this->setLimit(5); // @todo: needed?
84  $this->setEnableNumInfo(false);
85  $title = $this->lng->txt("calendar");
86  $this->setTitle($title);
87  $this->allow_moving = false;
88 
89  $params = $DIC->http()->request()->getQueryParams();
90  $this->requested_cal_agenda_per = (int) ($params['cal_agenda_per'] ?? null);
91 
92  $seed_str = $this->initSeedFromQuery();
93  if (!strlen($seed_str) && ilSession::has("il_cal_block_" . $this->getBlockType() . "_" . $this->getBlockId() . "_seed")) {
94  $seed_str = ilSession::get("il_cal_block_" . $this->getBlockType() . "_" . $this->getBlockId() . "_seed");
95  } elseif (strlen($seed_str)) {
96  ilSession::set("il_cal_block_" . $this->getBlockType() . "_" . $this->getBlockId() . "_seed", $seed_str);
97  } else {
98  $seed_str = date('Y-m-d', time());
99  }
100  $this->seed = new ilDate($seed_str, IL_CAL_DATE);
102  $this->user_settings = ilCalendarUserSettings::_getInstanceByUserId($DIC->user()->getId());
103 
104  $mode = $this->user->getPref("il_pd_cal_mode");
105  $this->display_mode = $mode ?: "mmon";
106 
107  if ($this->display_mode !== "mmon") {
108  $this->setPresentation(self::PRES_SEC_LIST);
109  }
110  }
111 
112  protected function initBookingUserFromQuery(): int
113  {
114  if ($this->http->wrapper()->query()->has('bkid')) {
115  return $this->http->wrapper()->query()->retrieve(
116  'bkid',
117  $this->refinery->kindlyTo()->int()
118  );
119  }
120  return 0;
121  }
122 
123  protected function initSeedFromQuery(): string
124  {
125  if ($this->http->wrapper()->query()->has('seed')) {
126  return $this->http->wrapper()->query()->retrieve(
127  'seed',
128  $this->refinery->kindlyTo()->string()
129  );
130  }
131  return '';
132  }
133 
134  protected function initAppointmentIdFromQuery(): int
135  {
136  if ($this->http->wrapper()->query()->has('app_id')) {
137  return $this->http->wrapper()->query()->retrieve(
138  'app_id',
139  $this->refinery->kindlyTo()->int()
140  );
141  }
142  return 0;
143  }
144 
145  protected function initInitialDateQuery(): int
146  {
147  if ($this->http->wrapper()->query()->has('dt')) {
148  return $this->http->wrapper()->query()->retrieve(
149  'dt',
150  $this->refinery->kindlyTo()->int()
151  );
152  }
153  return 0;
154  }
155 
159  public function getShowWeeksColumn(): bool
160  {
161  return ($this->settings->getShowWeeks() && $this->user_settings->getShowWeeks());
162  }
163 
167  public function getBlockType(): string
168  {
169  return self::$block_type;
170  }
171 
175  protected function isRepositoryObject(): bool
176  {
177  return false;
178  }
179 
180  public function setParentGUI(string $a_val): void
181  {
182  $this->parent_gui = $a_val;
183  }
184 
185  public function getParentGUI(): string
186  {
187  return $this->parent_gui;
188  }
189 
190  public function setForceMonthView(bool $a_val): void
191  {
192  $this->force_month_view = $a_val;
193  if ($a_val) {
194  $this->display_mode = "mmon";
195  $this->setPresentation(self::PRES_SEC_LEG);
196  }
197  }
198 
199  public function getForceMonthView(): bool
200  {
202  }
203 
207  public static function getScreenMode(): string
208  {
209  global $DIC;
210 
211  $ilCtrl = $DIC->ctrl();
212  $cmd_class = $ilCtrl->getCmdClass();
213 
214  $cmd = $ilCtrl->getCmd();
215 
216  if ($cmd_class == "ilcalendarappointmentgui" ||
217  $cmd_class == "ilconsultationhoursgui" ||
218  $cmd == 'showCalendarSubscription') {
219  return IL_SCREEN_CENTER;
220  }
221  return '';
222  }
223 
224  public function executeCommand(): string
225  {
226  $next_class = $this->ctrl->getNextClass();
227  $cmd = $this->ctrl->getCmd("getHTML");
228 
229  $this->setSubTabs();
230 
231  switch ($next_class) {
232  case "ilcalendarappointmentgui":
233  $this->initCategories();
234  $app_gui = new ilCalendarAppointmentGUI($this->seed, $this->seed);
235  $this->ctrl->forwardCommand($app_gui);
236  break;
237 
238  case "ilconsultationhoursgui":
239  $hours = new ilConsultationHoursGUI();
240  $this->ctrl->forwardCommand($hours);
241  break;
242 
243  case "ilcalendarappointmentpresentationgui":
244  $this->initCategories();
245 
246  $app = $this->getEventByAppointmentId($this->initAppointmentIdFromQuery());
247  if ($app === null) {
248  $this->logger->error(
249  'Invalid appointment ID for ref_id: ' .
250  (string) $this->initAppointmentIdFromQuery() . ' ' .
251  (string) $this->requested_ref_id
252  );
253  return $this->getHTML();
254  }
256  $this->ctrl->forwardCommand($presentation);
257  break;
258 
259  case "ilcalendarmonthgui":
260  $this->tabs->setSubTabActive('app_month');
261  $month_gui = new ilCalendarMonthGUI($this->seed);
262  $this->ctrl->forwardCommand($month_gui);
263  break;
264 
265  default:
266  return $this->$cmd();
267  }
268  return '';
269  }
270 
271  public function getTargetGUIClassPath(): array
272  {
273  $target_class = array();
274  if (!$this->getRepositoryMode()) {
275  $target_class = array("ildashboardgui", "ilcalendarpresentationgui");
276  } else {
277  switch (ilObject::_lookupType((int) $this->requested_ref_id, true)) {
278  case "crs":
279  $target_class = array("ilobjcoursegui", "ilcalendarpresentationgui");
280  break;
281 
282  case "grp":
283  $target_class = array("ilobjgroupgui", "ilcalendarpresentationgui");
284  break;
285  }
286  }
287  return $target_class;
288  }
289 
294  public function addMiniMonth(ilTemplate $a_tpl, bool $a_include_view_ctrl = false): void
295  {
296  $lng = $this->lng;
297  $ilUser = $this->user;
298  $ui = $this->ui;
299 
300  // weekdays
301  if ($this->getShowWeeksColumn()) {
302  $a_tpl->setCurrentBlock('month_header_col');
303  $a_tpl->setVariable('TXT_WEEKDAY', $this->lng->txt("cal_week_abbrev"));
304  $a_tpl->parseCurrentBlock();
305  }
306  for ($i = $this->user_settings->getWeekStart(); $i < (7 + $this->user_settings->getWeekStart()); $i++) {
307  $a_tpl->setCurrentBlock('month_header_col');
308  $a_tpl->setVariable('TXT_WEEKDAY', ilCalendarUtil::_numericDayToString($i, false));
309  $a_tpl->parseCurrentBlock();
310  }
311 
312  $bkid = $this->initBookingUserFromQuery();
313  if ($bkid) {
314  $user_id = $bkid;
315  $disable_empty = true;
316  } else {
317  $user_id = $this->user->getId();
318  $disable_empty = false;
319  }
320  $this->scheduler = new ilCalendarSchedule($this->seed, ilCalendarSchedule::TYPE_MONTH, $user_id);
321  $this->scheduler->addSubitemCalendars(true);
322  $this->scheduler->calculate();
323 
324  $counter = 0;
326  (int) $this->seed->get(IL_CAL_FKT_DATE, 'm'),
327  (int) $this->seed->get(IL_CAL_FKT_DATE, 'Y'),
328  $this->user_settings->getWeekStart()
329  )->get() as $date) {
330  $counter++;
331 
332  $events = $this->scheduler->getByDay($date, $this->user->getTimeZone());
333  $has_events = (bool) count($events);
334  if ($has_events || !$disable_empty) {
335  $a_tpl->setCurrentBlock('month_col_link');
336  } else {
337  $a_tpl->setCurrentBlock('month_col_no_link');
338  }
339 
340  if ($disable_empty) {
341  if (!$has_events) {
342  $a_tpl->setVariable('DAY_CLASS', 'calminiinactive');
343  } else {
344  $week_has_events = true;
345  foreach ($events as $event) {
346  $booking = new ilBookingEntry($event['event']->getContextId());
347  if ($booking->hasBooked($event['event']->getEntryId())) {
348  $a_tpl->setVariable('DAY_CLASS', 'calminiapp');
349  break;
350  }
351  }
352  }
353  } elseif ($has_events) {
354  $week_has_events = true;
355  $a_tpl->setVariable('DAY_CLASS', 'calminiapp');
356  }
357 
358  $day = $date->get(IL_CAL_FKT_DATE, 'j');
359  $month = $date->get(IL_CAL_FKT_DATE, 'n');
360 
361  $month_day = $day;
362 
363  $path = $this->getTargetGUIClassPath();
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);
368  }
369  $a_tpl->setVariable('OPEN_DAY_VIEW', $this->ctrl->getLinkTargetByClass($this->getTargetGUIClassPath(), ''));
370 
371  $a_tpl->setVariable('MONTH_DAY', $month_day);
372 
373  $a_tpl->parseCurrentBlock();
374 
375  $a_tpl->setCurrentBlock('month_col');
376 
377  if (ilCalendarUtil::_isToday($date)) {
378  $a_tpl->setVariable('TD_CLASS', 'calminitoday');
379  } elseif (ilDateTime::_equals($date, $this->seed, IL_CAL_MONTH)) {
380  $a_tpl->setVariable('TD_CLASS', 'calministd');
381  } elseif (ilDateTime::_before($date, $this->seed, IL_CAL_MONTH)) {
382  $a_tpl->setVariable('TD_CLASS', 'calminiprev');
383  } else {
384  $a_tpl->setVariable('TD_CLASS', 'calmininext');
385  }
386 
387  $a_tpl->parseCurrentBlock();
388 
389  if ($counter and !($counter % 7)) {
390  if ($this->getShowWeeksColumn()) {
391  $a_tpl->setCurrentBlock('week');
392  $a_tpl->setVariable(
393  'WEEK',
394  $date->get(IL_CAL_FKT_DATE, 'W')
395  );
396  $a_tpl->parseCurrentBlock();
397  }
398 
399  $a_tpl->setCurrentBlock('month_row');
400  $a_tpl->parseCurrentBlock();
401 
402  $week_has_events = false;
403  }
404  }
405  $a_tpl->setCurrentBlock('mini_month');
406  if ($a_include_view_ctrl) {
407  $a_tpl->setVariable("VIEW_CTRL_SECTION", $ui->renderer()->render($this->getViewControl()));
408  }
409 
410  $a_tpl->parseCurrentBlock();
411  }
412 
413  protected function getViewControl(): Section
414  {
415  $ui = $this->ui;
416  $lng = $this->lng;
417 
418  $first_of_month = substr($this->seed->get(IL_CAL_DATE), 0, 7) . "-01";
419  $myseed = new ilDate($first_of_month, IL_CAL_DATE);
420 
421  $myseed->increment(ilDateTime::MONTH, -1);
422  $this->ctrl->setParameter($this, 'seed', $myseed->get(IL_CAL_DATE));
423 
424  $prev_link = $this->ctrl->getLinkTarget($this, "setSeed", "", true);
425 
426  $myseed->increment(ilDateTime::MONTH, 2);
427  $this->ctrl->setParameter($this, 'seed', $myseed->get(IL_CAL_DATE));
428  $next_link = $this->ctrl->getLinkTarget($this, "setSeed", "", true);
429 
430  $this->ctrl->setParameter($this, 'seed', "");
431 
432  $blockgui = $this;
433 
434  // view control
435  // ... previous button
436  $b1 = $ui->factory()->button()->standard($this->lng->txt("previous"), "#")->withOnLoadCode(function ($id) use (
437  $prev_link,
438  $blockgui
439  ) {
440  return
441  "$('#" . $id . "').click(function() { ilBlockJSHandler('block_" . $blockgui->getBlockType() .
442  "_" . $blockgui->getBlockId() . "','" . $prev_link . "'); return false;});";
443  });
444 
445  // ... month button
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 (
450  $month_link,
451  $blockgui
452  ) {
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;});";
455  });
456  // ... next button
457  $b3 = $ui->factory()->button()->standard($this->lng->txt("next"), "#")->withOnLoadCode(function ($id) use (
458  $next_link,
459  $blockgui
460  ) {
461  return
462  "$('#" . $id . "').click(function() { ilBlockJSHandler('block_" . $blockgui->getBlockType() .
463  "_" . $blockgui->getBlockId() . "','" . $next_link . "'); return false;});";
464  });
465 
466  return $ui->factory()->viewControl()->section($b1, $b2, $b3);
467  }
468 
472  public function getHTML(): string
473  {
474  $this->initCategories();
475  $lng = $this->lng;
476  $ilObjDataCache = $this->obj_data_cache;
477  $user = $this->user;
478 
479  if ($this->mode == ilCalendarCategories::MODE_REPOSITORY) {
480  $bkid = $this->initBookingUserFromQuery();
481  if (!$bkid) {
482  $obj_id = $ilObjDataCache->lookupObjId((int) $this->requested_ref_id);
483  $participants = ilCourseParticipants::_getInstanceByObjId($obj_id);
484  $users = array_unique(array_merge($participants->getTutors(), $participants->getAdmins()));
485  //$users = $participants->getParticipants();
486  $users = ilBookingEntry::lookupBookableUsersForObject([$obj_id], $users);
487  foreach ($users as $user_id) {
488  $now = new ilDateTime(time(), IL_CAL_UNIX);
489 
490  // default to last booking entry
491  $appointments = ilConsultationHourAppointments::getAppointments($user_id);
492  $next_app = end($appointments);
493  reset($appointments);
494 
495  foreach ($appointments as $entry) {
496  // find next entry
497  if (ilDateTime::_before($entry->getStart(), $now, IL_CAL_DAY)) {
498  continue;
499  }
500  $booking_entry = new ilBookingEntry($entry->getContextId());
501  if (!in_array($obj_id, $booking_entry->getTargetObjIds())) {
502  continue;
503  }
504 
505  if (!$booking_entry->isAppointmentBookableForUser($entry->getEntryId(), $user->getId())) {
506  continue;
507  }
508  $next_app = $entry;
509  break;
510  }
511 
512  $path = $this->getTargetGUIClassPath();
513  $this->ctrl->setParameterByClass(end($path), "ch_user_id", $user_id);
514 
515  if (!$this->getForceMonthView()) {
516  $this->cal_footer[] = array(
517  'link' => $this->ctrl->getLinkTargetByClass(
518  $this->getTargetGUIClassPath(),
519  'selectCHCalendarOfUser'
520  ),
521  'txt' => str_replace(
522  "%1",
523  ilObjUser::_lookupFullname($user_id),
524  $this->lng->txt("cal_consultation_hours_for_user")
525  )
526  );
527  }
528  $path = $this->getTargetGUIClassPath();
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));
533  }
534  $this->ctrl->setParameter($this, "bkid", "");
535  $this->ctrl->setParameter($this, 'seed', '');
536  } else {
537  $this->ctrl->setParameter($this, "bkid", "");
538  $this->addBlockCommand(
539  $this->ctrl->getLinkTarget($this),
540  $this->lng->txt("back")
541  );
542  $this->ctrl->setParameter($this, "bkid", $this->initBookingUserFromQuery());
543  }
544  }
545 
546  if ($this->getProperty("settings")) {
547  $this->addBlockCommand(
548  $this->ctrl->getLinkTarget($this, "editSettings"),
549  $this->lng->txt("settings")
550  );
551  }
552 
553  $this->ctrl->setParameterByClass($this->getParentGUI(), "seed", $this->seed->get(IL_CAL_DATE));
554  $ret = parent::getHTML();
555  $this->ctrl->setParameterByClass($this->getParentGUI(), "seed", "");
556 
557  // workaround to include asynch code from ui only one time, see #20853
558  if ($this->ctrl->isAsynch()) {
559  $f = $this->ui->factory()->legacy()->content("");
560  $ret .= $this->ui->renderer()->renderAsync($f);
561  }
562  if (count($this->modals) > 0) {
563  if ($this->ctrl->isAsynch()) {
564  $ret .= $this->ui->renderer()->renderAsync($this->modals);
565  } else {
566  $ret .= $this->ui->renderer()->render($this->modals);
567  }
568  }
569  return $ret;
570  }
571 
572  public function getOverview(): string
573  {
574  $lng = $this->lng;
575 
576  $schedule = new ilCalendarSchedule($this->seed, ilCalendarSchedule::TYPE_INBOX);
577  $events = $schedule->getChangedEvents(true);
578 
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>";
583  $end_link = '</a>';
584 
585  return $link . $text . $end_link;
586  }
587 
588  protected function initCategories(): void
589  {
592  if ($this->getForceMonthView()) {
593  // old comment: in full container calendar presentation (allows selection of other calendars)
594  } elseif (!$cats->getMode()) {
595  $cats->initialize(
597  (int) $this->requested_ref_id,
598  true
599  );
600  }
601  }
602 
603  protected function setSubTabs(): void
604  {
605  $this->tabs->clearSubTabs();
606  }
607 
608  public function setSeed(): void
609  {
611  "il_cal_block_" . $this->getBlockType() . "_" . $this->getBlockId() . "_seed",
612  $this->initSeedFromQuery()
613  );
614  if ($this->ctrl->isAsynch()) {
615  echo $this->getHTML();
616  exit;
617  } else {
618  $this->returnToUpperContext();
619  }
620  }
621 
622  public function returnToUpperContext(): void
623  {
624  $this->ctrl->returnToParent($this);
625  }
626 
627  protected function initCommands(): void
628  {
629  $lng = $this->lng;
630 
631  if (!$this->getForceMonthView()) {
632  // @todo: set checked on ($this->display_mode != 'mmon')
633  $this->addBlockCommand(
634  $this->ctrl->getLinkTarget($this, "setPdModeEvents"),
635  $this->lng->txt("cal_upcoming_events_header"),
636  ""
637  // see #35777 $this->ctrl->getLinkTarget($this, "setPdModeEvents", "", true)
638  );
639 
640  // @todo: set checked on ($this->display_mode == 'mmon')
641  $this->addBlockCommand(
642  $this->ctrl->getLinkTarget($this, "setPdModeMonth"),
643  $this->lng->txt("app_month"),
644  $this->ctrl->getLinkTarget($this, "setPdModeMonth", "", true)
645  );
646 
647  if ($this->getRepositoryMode()) {
648  #23921
649  $this->ctrl->setParameterByClass('ilcalendarpresentationgui', 'seed', '');
650  $this->addBlockCommand(
651  $this->ctrl->getLinkTargetByClass($this->getTargetGUIClassPath(), ""),
652  $this->lng->txt("cal_open_calendar")
653  );
654 
655  if ($this->access->checkAccess('edit_event', '', (int) $this->requested_ref_id)) {
656  $this->ctrl->setParameter($this, "add_mode", "");
657  $this->addBlockCommand(
658  $this->ctrl->getLinkTargetByClass("ilCalendarAppointmentGUI", "add"),
659  $this->lng->txt("add_appointment")
660  );
661  $this->ctrl->setParameter($this, "add_mode", "");
662  }
663  }
664  }
665  }
666 
667  public function setPdModeEvents(): void
668  {
669  $ilUser = $this->user;
670 
671  $this->user->writePref("il_pd_cal_mode", "evt");
672  $this->display_mode = "evt";
673  $this->setPresentation(self::PRES_SEC_LIST);
674  if ($this->ctrl->isAsynch()) {
675  echo $this->getHTML();
676  exit;
677  } else {
678  $this->ctrl->returnToParent($this);
679  }
680  }
681 
682  public function setPdModeMonth(): void
683  {
684  $ilUser = $this->user;
685 
686  $this->user->writePref("il_pd_cal_mode", "mmon");
687  $this->display_mode = "mmon";
688  $this->setPresentation(self::PRES_SEC_LEG);
689  if ($this->ctrl->isAsynch()) {
690  echo $this->getHTML();
691  exit;
692  } else {
693  $this->ctrl->redirectByClass("ildashboardgui", "show");
694  }
695  }
696 
697  public function getEventByAppointmentId(int $a_appointment_id): ?array
698  {
699  foreach ($this->getEvents() as $event) {
700  if (
701  array_key_exists('event', $event) &&
702  $event['event'] instanceof ilCalendarEntry &&
703  $event['event']->getEntryId() === $a_appointment_id
704  ) {
705  return $event;
706  }
707  }
708  return null;
709  }
710 
711  public function getEvents(): array
712  {
713  $seed = new ilDate(date('Y-m-d', time()), IL_CAL_DATE);
714 
716  $schedule->addSubitemCalendars(true); // #12007
717  $schedule->setEventsLimit(20);
718  $schedule->calculate();
719  // #13809
720  return $schedule->getScheduledEvents();
721  }
722 
723  public function getData(): array
724  {
725  $lng = $this->lng;
726  $ui = $this->ui;
727 
728  $f = $ui->factory();
729 
730  $events = $this->getEvents();
731 
732  $data = array();
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);
738  $this->ctrl->setParameter($this, "app_id", $this->initAppointmentIdFromQuery());
739  $this->ctrl->setParameter($this, "dt", $this->initInitialDateQuery());
740  $modal = $f->modal()->roundtrip('', [])->withAsyncRenderUrl($url);
741 
742  $dates = $this->getDatesForItem($item);
743 
744  $shy = $f->button()->shy(
745  $item["event"]->getPresentationTitle(),
746  ""
747  )->withOnClick($modal->getShowSignal());
748 
749  $data[] = array(
750  "date" => ilDatePresentation::formatPeriod($dates["start"], $dates["end"]),
751  "title" => $item["event"]->getPresentationTitle(),
752  "url" => "#",
753  "shy_button" => $shy,
754  "modal" => $modal
755  );
756  }
757  $this->setEnableNumInfo(true);
758  } else {
759  $data = [];
760  /*$data[] = array(
761  "date" => $lng->txt("msg_no_search_result"),
762  "title" => "",
763  "url" => ""
764  ); */
765 
766  $this->setEnableNumInfo(false);
767  }
768 
769  return $data;
770  }
771 
777  public function getDatesForItem(array $item): array
778  {
779  $start = $item["dstart"];
780  $end = $item["dend"];
781  if ($item["fullday"]) {
782  $start = new ilDate($start, IL_CAL_UNIX);
783  $end = new ilDate($end, IL_CAL_UNIX);
784  } else {
785  $start = new ilDateTime($start, IL_CAL_UNIX);
786  $end = new ilDateTime($end, IL_CAL_UNIX);
787  }
788  return array("start" => $start, "end" => $end);
789  }
790 
795  public function getModalForApp()
796  {
797  $this->initCategories();
798  $ui = $this->ui;
799 
800  $f = $ui->factory();
801  $r = $ui->renderer();
802 
803  // @todo: this needs optimization
804  $events = $this->getEvents();
805  foreach ($events as $item) {
806  if ($item["event"]->getEntryId() == $this->initAppointmentIdFromQuery() && $item['dstart'] == $this->initInitialDateQuery()) {
807  $dates = $this->getDatesForItem($item);
808 
809  // content of modal
810  $next_gui = ilCalendarAppointmentPresentationGUI::_getInstance($this->seed, $item);
811  $content = $this->ctrl->getHTML($next_gui);
812 
813  $modal = $f->modal()->roundtrip(
814  ilDatePresentation::formatPeriod($dates["start"], $dates["end"]),
815  $f->legacy()->content($content)
816  );
817  echo $r->renderAsync($modal);
818  }
819  }
820  exit();
821  }
822 
823  public function getViewControlsForPanel(): array
824  {
825  if ($this->getPresentation() == self::PRES_SEC_LEG) {
826  return [$this->getViewControl()];
827  }
828  return parent::getViewControlsForPanel();
829  }
830 
834  protected function getLegacyContent(): string
835  {
836  $tpl = new ilTemplate(
837  "tpl.calendar_block.html",
838  true,
839  true,
840  "components/ILIAS/Calendar"
841  );
842 
843  $this->addMiniMonth($tpl);
844 
845  $panel_tpl = new \ilTemplate(
846  'tpl.cal_block_panel.html',
847  true,
848  true,
849  'components/ILIAS/Calendar'
850  );
851 
852  $this->addSubscriptionButton($panel_tpl);
853 
854  return $tpl->get() . $panel_tpl->get();
855  }
856 
860  protected function getListItemForData(array $data): ?\ILIAS\UI\Component\Item\Item
861  {
862  $factory = $this->ui->factory();
863  if (isset($data["modal"])) {
864  $this->modals[] = $data["modal"];
865  }
866  if (isset($data["shy_button"])) {
867  return $factory->item()->standard($data["shy_button"])->withDescription($data["date"]);
868  } else {
869  return $factory->item()->standard($data["date"]);
870  }
871  }
872 
877  public function getNoItemFoundContent(): string
878  {
879  return $this->lng->txt("cal_no_events_block");
880  }
881 
885  protected function addSubscriptionButton(ilTemplate $panel_template): void
886  {
887  global $DIC;
888 
889  $ui_factory = $DIC->ui()->factory();
890  $ui_renderer = $DIC->ui()->renderer();
891 
892  $gui_path = $this->getTargetGUIClassPath();
893  $gui_path[] = strtolower(\ilCalendarSubscriptionGUI::class);
894  $url = $this->ctrl->getLinkTargetByClass($gui_path, 'getModalForSubscription', "", true, false);
895 
896  $roundtrip_modal = $ui_factory->modal()->roundtrip('', [])->withAsyncRenderUrl($url);
897 
898  $standard_button = $ui_factory->button()->standard($this->lng->txt('btn_ical'), '')->withOnClick(
899  $roundtrip_modal->getShowSignal()
900  );
901  $components = [
902  $roundtrip_modal,
903  $standard_button
904  ];
905 
906  $presentation = $ui_renderer->render($components);
907 
908  $panel_template->setCurrentBlock('subscription_buttons');
909  $panel_template->setVariable('SUBSCRIPTION_BUTTON', $presentation);
910  $panel_template->parseCurrentBlock();
911  }
912 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static _getInstance(ilDate $seed, array $a_app)
get singleton instance
static get(string $a_var)
ilCalendarUserSettings $user_settings
ilCalendarSettings $settings
ilObjUser $user
ILIAS DI UIServices $ui
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...
ilLanguage $lng
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.
setLimit(int $a_limit)
setBlockId(string $a_block_id="0")
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
Interface Observer Contains several chained tasks and infos about them.
setEnableNumInfo(bool $a_enablenuminfo)
Factory $factory
Help GUI class.
const IL_CAL_MONTH
getNoItemFoundContent()
No item entry.
$url
Definition: shib_logout.php:66
getEventByAppointmentId(int $a_appointment_id)
const IL_CAL_UNIX
getModalForApp()
Get modal for appointment (see similar code in ilCalendarAgendaListGUI) todo use all this methods fro...
getHTML()
Get bloch HTML code.
$path
Definition: ltiservices.php:29
static _getInstanceByUserId(int $a_user_id)
$components
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _numericDayToString(int $a_day, bool $a_long=true, ?ilLanguage $lng=null)
const IL_CAL_DAY
ilObjectDataCache $obj_data_cache
static http()
Fetches the global http state from ILIAS.
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
ilTemplate $tpl
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...
ilCalendarSchedule $scheduler
global $DIC
Definition: shib_login.php:22
const IL_CAL_FKT_DATE
static has($a_var)
const IL_SCREEN_CENTER
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)
const IL_CAL_DATE
This describes a Section Control.
Definition: Section.php:29
Administrate calendar appointments.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
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.
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...
$r