blob: 0619261adb90d8505d95dc206f60de8fa6dd4d9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
*Time:* <?= date('d.m.Y H:i', $date->begin) ?> - <?= date('d.m.Y H:i', $date->end) ?>
*Title:* <?= $date->title ?>
<?= $date->description ?? '' ?>
--
<? if ($date->category) : ?>
*Category:* <?= $date->category ?>
<? endif ?>
*Access:* <?= $date->getAccessAsString() ?>
<? if ($date->repetition_type) : ?>
*Repetition:* <?= $date->getRepetitionAsString() ?>
<? endif ?>
<? if (Config::get()->CALENDAR_GROUP_ENABLE && count($date->calendars) > 1) : ?>
*Participants:*
<? foreach($date->getParticipantsAsStringArray($receiver->user_id) as $participant_string) : ?>
- <?= $participant_string ?>
<? endforeach ?>
<? endif ?>
<? if (!empty($receiver_date_assignment)) : ?>
**Your participation:** <?= $receiver_date_assignment->getParticipationAsString() ?>
<? endif ?>
|