Files
server/usr/share/psa-horde/kronolith/templates/agenda/notification.plain.php
2026-01-07 20:52:11 +01:00

12 lines
437 B
PHP

<?php printf(_("Your daily agenda for %s"), $this->date) ?>
<?php foreach ($this->events as $event): ?>
<?php if ($event->isAllDay()): ?>
<?php echo Horde_String::pad(_("All day") . ':', $this->pad) . $event->title ?>
<?php else: ?>
<?php echo Horde_String::pad($event->start->format($this->timeformat) . ':', $this->pad) . $event->title ?>
<?php endif ?>
(<?php echo Kronolith::statusToString($event->status) ?>)
<?php endforeach ?>