_appendName = true; $this->_type = 'date_time_picker'; } /** * HTML code to display this datepicker * @return string */ public function toHtml() { $js = $this->getElementJS(); return $js.parent::toHtml(); } /** * @param string $value */ function setValue($value) { $value = substr($value, 0, 16); $this->updateAttributes( array( 'value'=>$value ) ); } /** * Get the necessary javascript for this datepicker * @return string */ private function getElementJS() { $js = null; $id = $this->getAttribute('id'); //timeFormat: 'hh:mm' $js .= ""; return $js; } }