ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAppointmentCustomGridPlugin.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 {
32  protected ?ilDateTime $start_date;
33 
34  public function setAppointment(ilCalendarEntry $a_appointment, ilDateTime $a_start_date): void
35  {
36  $this->appointment = $a_appointment;
37  $this->start_date = $a_start_date;
38  }
39 
43  public function getAppointment(): ?ilCalendarEntry
44  {
45  return $this->appointment;
46  }
47 
51  public function getStartDate(): ?ilDateTime
52  {
53  return $this->start_date;
54  }
55 
59  abstract public function replaceContent(string $content): string;
60 
64  abstract public function addExtraContent(): string;
65 
69  abstract public function addGlyph(): string;
70 
74  abstract public function editShyButtonTitle(): string;
75 
79  abstract public function editAgendaItem(UiComponentItem $item): UiComponentItem;
80 }
getAppointment()
Get the calendar entry (appointment[&#39;event&#39;])
editShyButtonTitle()
Edit the shy button title.
Abstract parent class for all calendar custom grid plugin classes.
addGlyph()
Add glyph before the appointment title.
setAppointment(ilCalendarEntry $a_appointment, ilDateTime $a_start_date)
addExtraContent()
Add extra content in the grid after the event title.
getStartDate()
Get the specific start date of the calendar entry, not the appointment starting date.
editAgendaItem(UiComponentItem $item)
Modify the agenda item.
replaceContent(string $content)
Replaces the complete content in a calendar Grid.