mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
86 lines
No EOL
2.4 KiB
PHP
86 lines
No EOL
2.4 KiB
PHP
<?php
|
|
/**
|
|
* TbDatePicker widget class
|
|
*
|
|
* @author: antonio ramirez <antonio@clevertech.biz>
|
|
* @copyright Copyright © Clevertech 2012-
|
|
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
|
|
* @package YiiBooster bootstrap.widgets
|
|
*/
|
|
class TbDatePicker extends CInputWidget
|
|
{
|
|
/**
|
|
* @var TbActiveForm when created via TbActiveForm, this attribute is set to the form that renders the widget
|
|
* @see TbActionForm->inputRow
|
|
*/
|
|
public $form;
|
|
/**
|
|
* @var array the options for the Bootstrap JavaScript plugin.
|
|
*/
|
|
public $options = array();
|
|
/**
|
|
* @var string[] the JavaScript event handlers.
|
|
*/
|
|
public $events = array();
|
|
|
|
/**
|
|
* Initializes the widget.
|
|
*/
|
|
public function init()
|
|
{
|
|
$this->htmlOptions['type'] = 'text';
|
|
$this->htmlOptions['autocomplete'] = 'off';
|
|
|
|
if (!isset($this->options['language']))
|
|
$this->options['language'] = Yii::app()->language;
|
|
|
|
if (!isset($this->options['format']))
|
|
$this->options['format'] = 'mm/dd/yyyy';
|
|
|
|
if (!isset($this->options['weekStart']))
|
|
$this->options['weekStart'] = 0; // Sunday
|
|
}
|
|
|
|
/**
|
|
* Runs the widget.
|
|
*/
|
|
public function run()
|
|
{
|
|
list($name, $id) = $this->resolveNameID();
|
|
|
|
if ($this->hasModel())
|
|
{
|
|
if($this->form)
|
|
echo $this->form->textField($this->model, $this->attribute, $this->htmlOptions);
|
|
else
|
|
echo CHtml::activeTextField($this->model, $this->attribute, $this->htmlOptions);
|
|
|
|
} else
|
|
echo CHtml::textField($name, $this->value, $this->htmlOptions);
|
|
|
|
$this->registerClientScript($id);
|
|
}
|
|
|
|
/**
|
|
* Registers required client script for bootstrap datepicker. It is not used through bootstrap->registerPlugin
|
|
* in order to attach events if any
|
|
*/
|
|
public function registerClientScript($id)
|
|
{
|
|
Yii::app()->bootstrap->registerAssetCss('bootstrap-datepicker.css');
|
|
Yii::app()->bootstrap->registerAssetJs('bootstrap.datepicker.js');
|
|
if(isset($this->options['language']))
|
|
{
|
|
Yii::app()->bootstrap->registerAssetJs('locales/bootstrap-datepicker.'.$this->options['language'].'.js', CClientScript::POS_END);
|
|
}
|
|
$options = !empty($this->options) ? CJavaScript::encode($this->options) : '';
|
|
|
|
ob_start();
|
|
echo "jQuery('#{$id}').bdatepicker({$options})";
|
|
foreach ($this->events as $event => $handler)
|
|
echo ".on('{$event}', " . CJavaScript::encode($handler) . ")";
|
|
|
|
Yii::app()->getClientScript()->registerScript(__CLASS__ . '#' . $this->getId(), ob_get_clean() . ';');
|
|
|
|
}
|
|
} |