diff options
Diffstat (limited to 'application/views/helpers/FormDate.php')
-rw-r--r-- | application/views/helpers/FormDate.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/application/views/helpers/FormDate.php b/application/views/helpers/FormDate.php new file mode 100644 index 0000000..39e6d94 --- /dev/null +++ b/application/views/helpers/FormDate.php @@ -0,0 +1,46 @@ +<?php +/* Icinga Web 2 | (c) 2017 Icinga Development Team | GPLv2+ */ + +/** + * Render date input controls + */ +class Zend_View_Helper_FormDate extends Zend_View_Helper_FormElement +{ + /** + * Render the date input control + * + * @param string $name + * @param int $value + * @param array $attribs + * + * @return string The rendered date input control + */ + public function formDate($name, $value = null, $attribs = null) + { + $info = $this->_getInfo($name, $value, $attribs); + + extract($info); // name, id, value, attribs, options, listsep, disable + /** @var string $id */ + /** @var bool $disable */ + + $disabled = ''; + if ($disable) { + $disabled = ' disabled="disabled"'; + } + + /** @var \Icinga\Web\View $view */ + $view = $this->view; + + $html5 = sprintf( + '<input type="date" name="%s" id="%s" value="%s"%s%s%s', + $view->escape($name), + $view->escape($id), + $view->escape($value), + $disabled, + $this->_htmlAttribs($attribs), + $this->getClosingBracket() + ); + + return $html5; + } +} |