You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
61 lines
1.3 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
require_once 'HTML/QuickForm/date.php';
|
|
|
|
/**
|
|
* Form element to select a date and hour (with popup datepicker)
|
|
*/
|
|
class DatePicker extends HTML_QuickForm_text
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function DatePicker($elementName = null, $elementLabel = null, $attributes = null)
|
|
{
|
|
if (!isset($attributes['id'])) {
|
|
$attributes['id'] = $elementName;
|
|
}
|
|
|
|
HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
|
|
$this->_appendName = true;
|
|
$this->_type = 'date_picker';
|
|
}
|
|
|
|
/**
|
|
* HTML code to display this datepicker
|
|
*/
|
|
public function toHtml()
|
|
{
|
|
$js = $this->getElementJS();
|
|
return $js.parent::toHtml();
|
|
}
|
|
|
|
function setValue($value)
|
|
{
|
|
$value = substr($value, 0, 16);
|
|
$this->updateAttributes(
|
|
array(
|
|
'value' => $value
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the necessary javascript for this datepicker
|
|
*/
|
|
private function getElementJS()
|
|
{
|
|
$js = null;
|
|
$id = $this->getAttribute('id');
|
|
|
|
$js .= "<script>
|
|
$(function() {
|
|
$('#$id').datepicker({
|
|
dateFormat: 'yy-mm-dd'
|
|
});
|
|
});
|
|
</script>";
|
|
|
|
return $js;
|
|
}
|
|
}
|
|
|