summaryrefslogtreecommitdiff
path: root/includes/view/EventConfig_view.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-09-29 09:25:06 +0200
committermsquare <msquare@notrademark.de>2016-09-29 09:25:06 +0200
commit6685beb39784f63751b7cae6d211a5808c6e47a3 (patch)
treeea6f07976e9075fe2c4fd2bfc16a341e34c463d1 /includes/view/EventConfig_view.php
parent50bf7feff0e0461e6afc7a6488dec1b898fa5abd (diff)
display event countdowns on start page
Diffstat (limited to 'includes/view/EventConfig_view.php')
-rw-r--r--includes/view/EventConfig_view.php45
1 files changed, 41 insertions, 4 deletions
diff --git a/includes/view/EventConfig_view.php b/includes/view/EventConfig_view.php
index 429b6a86..682477ff 100644
--- a/includes/view/EventConfig_view.php
+++ b/includes/view/EventConfig_view.php
@@ -1,12 +1,49 @@
<?php
/**
+ * Shows basic event infos and countdowns.
+ * @param EventConfig $event_config The event configuration
+ */
+function EventConfig_countdown_page($event_config) {
+ if ($event_config == null) {
+ return info(_("We got no information about the event right now."), true);
+ }
+
+ $elements = [];
+
+ if ($event_config['event_name'] != null) {
+ $elements[] = heading($event_config['event_name'], 2);
+ }
+
+ if ($event_config['event_start_date'] != null && $event_config['event_end_date'] != null) {
+ $elements[] = sprintf(_("from %s to %s"), date("Y-m-d", $event_config['event_start_date']), date("Y-m-d", $event_config['event_end_date']));
+ }
+
+ if ($event_config['buildup_start_date'] != null && time() < $event_config['buildup_start_date']) {
+ $elements[] = '<h2 class="moment-countdown" data-timestamp="' . $event_config['buildup_start_date'] . '">' . _("Buildup starts in %c") . '</h2>';
+ }
+
+ if ($event_config['event_start_date'] != null && time() < $event_config['event_start_date']) {
+ $elements[] = '<h2 class="moment-countdown" data-timestamp="' . $event_config['event_start_date'] . '">' . _("Event starts in %c") . '</h2>';
+ }
+
+ if ($event_config['event_end_date'] != null && time() < $event_config['event_end_date'] && ($event_config['event_start_date'] == null || time() > $event_config['event_start_date'])) {
+ $elements[] = '<h2 class="moment-countdown" data-timestamp="' . $event_config['event_end_date'] . '">' . _("Event ends in %c") . '</h2>';
+ }
+
+ if ($event_config['teardown_end_date'] != null && time() < $event_config['teardown_end_date'] && ($event_config['event_start_date'] == null || time() > $event_config['event_start_date'])) {
+ $elements[] = '<h2 class="moment-countdown" data-timestamp="' . $event_config['teardown_end_date'] . '">' . _("Teardown ends in %c") . '</h2>';
+ }
+
+ return join("", $elements);
+}
+
+/**
* Converts event name and start+end date into a line of text.
*/
-function EventConfig_info() {
- $event_config = EventConfig();
- if ($event_config === false) {
- engelsystem_error("Unable to load event config.");
+function EventConfig_info($event_config) {
+ if ($event_config == null) {
+ return "";
}
// Event name, start+end date are set