Hallo,
Die verkürzte Darstellung des moduls 'Event list' gibt mehrtägige Events nur einmal aus. Ich möchte gern Anfangs- und, wenn mehrtägig, Enddatum anzeigen, aber weiss nicht so recht wie. Ich habe folgendes im template versucht, das klappt aber nicht, denn es zeigt mir im moment z.B. folgendes an: Friday 05 Jun 2015 - 1433545200
PHP-Code:
<?php if ($this->header): ?>
<?php if ($this->firstDay): ?><?php echo $this->firstDay; ?>
<?php endif; ?>
<?php echo $this->firstDate; ?><?php if ($this->endDate): ?>
-
<?php if ($this->endDay): ?><?php echo $this->endDay; ?>
<?php endif; ?>
<?php echo $this->endDate; ?>
<?php endif; ?>
<?php endif; ?>
Geren möchte ich auch den Namen des wochentages verkürzen, als 'Fri' anstelle 'Friday'. Wie würde ich das machen?
Vielen Dank!