diff options
Diffstat (limited to 'views/default/input/date.php')
-rw-r--r-- | views/default/input/date.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/views/default/input/date.php b/views/default/input/date.php new file mode 100644 index 000000000..afc40e899 --- /dev/null +++ b/views/default/input/date.php @@ -0,0 +1,30 @@ +<?php +/** + * Elgg date input + * Displays a text field with a popup date picker. + * + * @package Elgg + * @subpackage Core + * + * @uses $vars['value'] The current value, if any (as a unix timestamp) + * + */ + +$defaults = array( + 'value' => '', + 'class' => '', +); + +$vars = array_merge($defaults, $vars); + +//@todo popup_calendar deprecated in 1.8. Remove in 2.0 +$vars['class'] = trim("elgg-input-date popup_calendar {$vars['class']}"); + +if ($vars['value'] > 86400) { + $vars['value'] = date('n/d/Y', $vars['value']); +} + +$attributes = elgg_format_attributes($vars); + +?> +<input type="text" <?php echo $attributes; ?> />
\ No newline at end of file |