1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfWidgetFormJQueryDate represents a date widget rendered by JQuery UI.
*
* This widget needs JQuery and JQuery UI to work.
*
* @package symfony
* @subpackage widget
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: sfWidgetFormJQueryDate.class.php 12875 2008-11-10 12:22:33Z fabien $
*/
class sfWidgetFormJQueryDate extends sfWidgetFormDate
{
/**
* Configures the current widget.
*
* Available options:
*
* * image: The image path to represent the widget (false by default)
* * config: A JavaScript array that configures the JQuery date widget
* * culture: The user culture
*
* @param array $options An array of options
* @param array $attributes An array of default HTML attributes
*
* @see sfWidgetForm
*/
protected function configure($options = array(), $attributes = array())
{
$this->addOption('image', false);
$this->addOption('config', '{}');
$this->addOption('culture', '');
parent::configure($options, $attributes);
if ('en' == $this->getOption('culture'))
{
$this->setOption('culture', 'en');
}
}
/**
* @param string $name The element name
* @param string $value The date displayed in this widget
* @param array $attributes An array of HTML attributes to be merged with the default HTML attributes
* @param array $errors An array of errors for the field
*
* @return string An HTML tag string
*
* @see sfWidgetForm
*/
public function render($name, $value = null, $attributes = array(), $errors = array())
{
$prefix = $this->generateId($name);
$image = '';
if (false !== $this->getOption('image'))
{
$image = sprintf(', buttonImage: %s, buttonImageOnly: true', $this->getOption('image'));
}
return parent::render($name, $value, $attributes, $errors).
$this->renderTag('input', array('type' => 'hidden', 'size' => 10, 'id' => $id = $this->generateId($name).'_jquery_control', 'disabled' => 'disabled')).
sprintf(<<<EOF
<script type="text/javascript">
function %s_read_linked()
{
\$("#%s").val(\$("#%s").val() + "/" + \$("#%s").val() + "/" + \$("#%s").val());
return {};
}
function %s_update_linked(date)
{
\$("#%s").val(date.substring(3, 5));
\$("#%s").val(date.substring(0, 2));
\$("#%s").val(date.substring(6, 10));
}
\$("#%s").datepicker(\$.extend({}, {
minDate: new Date(%s, 1 - 1, 1),
maxDate: new Date(%s, 12 - 1, 31),
beforeShow: %s_read_linked,
onSelect: %s_update_linked,
showOn: "both"
%s
}, \$.datepicker.regional["%s"], %s));
</script>
EOF
,
$prefix, $id,
$this->generateId($name.'[day]'), $this->generateId($name.'[month]'), $this->generateId($name.'[year]'),
$prefix,
$this->generateId($name.'[day]'), $this->generateId($name.'[month]'), $this->generateId($name.'[year]'),
$id,
min($this->getOption('years')), max($this->getOption('years')),
$prefix, $prefix, $image, $this->getOption('culture'), $this->getOption('config')
);
}
}
|