* @author Icinga Development Team */ // {{{ICINGA_LICENSE_HEADER}}} /** * Helper to generate a text input with a datepicker being attached */ class Zend_View_Helper_FormDateTime extends \Zend_View_Helper_FormText { /** * Generates a html date input * * @access public * * @param string $name The element name. * @param string $value The default value. * @param array $attribs Attributes which should be added to the input tag. * * @return string The input tag and options XHTML. */ public function formDateTime($name, $value = null, $attribs = null) { return '_htmlAttribs($attribs) . $this->getClosingBracket(); } } // @codingStandardsIgnoreStop