aboutsummaryrefslogtreecommitdiff
path: root/views/default/output
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/output')
-rw-r--r--views/default/output/calendar.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/views/default/output/calendar.php b/views/default/output/calendar.php
new file mode 100644
index 000000000..0c94086bb
--- /dev/null
+++ b/views/default/output/calendar.php
@@ -0,0 +1,24 @@
+<?php
+
+ /**
+ * Elgg calendar output
+ * Displays a calendar output field
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ *
+ * @uses $vars['value'] The current value, if any
+ *
+ */
+
+ if (is_int($vars['value'])) {
+ echo date("F j, Y", $vars['value']);
+ } else {
+ echo $vars['value'];
+ }
+
+?> \ No newline at end of file