ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilAppointmentCustomGridPlugin.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
/* Copyright (c) 1998-2017 ILIAS open source, Extended GPL, see docs/LICENSE */
6
7
use
ILIAS\UI\Component\Item\Item
as
UiComponentItem
;
8
15
abstract
class
ilAppointmentCustomGridPlugin
extends
ilPlugin
16
{
17
protected
?
ilCalendarEntry
$appointment
;
18
protected
?
ilDateTime
$start_date
;
19
20
public
function
setAppointment
(
ilCalendarEntry
$a_appointment,
ilDateTime
$a_start_date): void
21
{
22
$this->appointment = $a_appointment;
23
$this->start_date = $a_start_date;
24
}
25
29
public
function
getAppointment
(): ?
ilCalendarEntry
30
{
31
return
$this->appointment
;
32
}
33
37
public
function
getStartDate
(): ?
ilDateTime
38
{
39
return
$this->start_date
;
40
}
41
45
abstract
public
function
replaceContent
(
string
$content): string;
46
50
abstract
public
function
addExtraContent
(): string;
51
55
abstract
public
function
addGlyph
(): string;
56
60
abstract
public
function
editShyButtonTitle
(): string;
61
65
abstract
public
function
editAgendaItem
(
UiComponentItem
$item):
UiComponentItem
;
66
}
ilAppointmentCustomGridPlugin\getAppointment
getAppointment()
Get the calendar entry (appointment['event'])
Definition:
class.ilAppointmentCustomGridPlugin.php:29
ilCalendarEntry
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilCalendarEntry.php:27
Item
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilAppointmentCustomGridPlugin\editShyButtonTitle
editShyButtonTitle()
Edit the shy button title.
ilDateTime
ilAppointmentCustomGridPlugin
Abstract parent class for all calendar custom grid plugin classes.
Definition:
class.ilAppointmentCustomGridPlugin.php:15
ilAppointmentCustomGridPlugin\addGlyph
addGlyph()
Add glyph before the appointment title.
ilAppointmentCustomGridPlugin\$appointment
ilCalendarEntry $appointment
Definition:
class.ilAppointmentCustomGridPlugin.php:17
ilAppointmentCustomGridPlugin\$start_date
ilDateTime $start_date
Definition:
class.ilAppointmentCustomGridPlugin.php:18
ilAppointmentCustomGridPlugin\setAppointment
setAppointment(ilCalendarEntry $a_appointment, ilDateTime $a_start_date)
Definition:
class.ilAppointmentCustomGridPlugin.php:20
ilAppointmentCustomGridPlugin\addExtraContent
addExtraContent()
Add extra content in the grid after the event title.
ilAppointmentCustomGridPlugin\getStartDate
getStartDate()
Get the specific start date of the calendar entry, not the appointment starting date.
Definition:
class.ilAppointmentCustomGridPlugin.php:37
ilAppointmentCustomGridPlugin\editAgendaItem
editAgendaItem(UiComponentItem $item)
Modify the agenda item.
ilPlugin
ilAppointmentCustomGridPlugin\replaceContent
replaceContent(string $content)
Replaces the complete content in a calendar Grid.
Services
Calendar
classes
class.ilAppointmentCustomGridPlugin.php
Generated on Sun Apr 6 2025 22:01:58 for ILIAS by
1.8.13 (using
Doxyfile
)