Yii2 framework backup
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.

139 lines
4.0 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\jui;
use Yii;
use yii\helpers\Html;
use yii\helpers\Json;
/**
* DatePicker renders a datepicker jQuery UI widget.
*
* For example:
*
* ```php
* echo DatePicker::widget([
* 'language' => 'ru',
* 'model' => $model,
* 'attribute' => 'country',
* 'clientOptions' => [
* 'dateFormat' => 'yy-mm-dd',
* ],
* ]);
* ```
*
* The following example will use the name property instead:
*
* ```php
* echo DatePicker::widget([
* 'language' => 'ru',
* 'name' => 'country',
* 'clientOptions' => [
* 'dateFormat' => 'yy-mm-dd',
* ],
* ]);
*```
*
* @see http://api.jqueryui.com/datepicker/
* @author Alexander Kochetov <creocoder@gmail.com>
* @since 2.0
*/
12 years ago
class DatePicker extends InputWidget
{
/**
* @var array the list of supported languages.
*/
public static $languageList = [
'af', 'ar-DZ', 'ar', 'az', 'be', 'bg', 'bs', 'ca', 'cs', 'cy-GB', 'da', 'de', 'el',
'en-AU', 'en-GB', 'en-NZ', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fo', 'fr-CA', 'fr-CH',
'fr', 'gl', 'he', 'hi', 'hr', 'hu', 'hy', 'id', 'is', 'it', 'ja', 'ka', 'kk', 'km',
'ko', 'ky', 'lb', 'lt', 'lv', 'mk', 'ml', 'ms', 'nb', 'nl-BE', 'nn', 'no', 'pl',
'pt-BR', 'pt', 'rm', 'ro', 'ru', 'sk', 'sl', 'sq', 'sr-SR', 'sr', 'sv', 'ta', 'th',
'tj', 'tr', 'uk', 'vi', 'zh-CN', 'zh-HK', 'zh-TW',
];
/**
* @var string the locale ID (eg 'fr', 'de') for the language to be used by the date picker.
* If this property is not set, then the current application language will be used.
* If the property value is not in the [[languageList]], then date picker will show in English.
*/
public $language;
/**
12 years ago
* @var boolean If true, shows the widget as an inline calendar and the input as a hidden field.
*/
12 years ago
public $inline = false;
/**
* @var array the HTML attributes for the container tag. This is only used when [[inline]] is true.
*/
public $containerOptions = [];
/**
* @inheritdoc
*/
public function init()
{
parent::init();
if ($this->inline && !isset($this->containerOptions['id'])) {
$this->containerOptions['id'] = $this->options['id'] . '-container';
}
}
/**
* Renders the widget.
*/
public function run()
{
12 years ago
echo $this->renderWidget() . "\n";
$containerID = $this->inline ? $this->containerOptions['id'] : $this->options['id'];
$language = $this->language === null ? Yii::$app->language : $this->language;
if (in_array($language, static::$languageList)) {
$view = $this->getView();
DatePickerRegionalAsset::register($view);
$options = Json::encode($this->clientOptions);
$view->registerJs("$('#{$containerID}').datepicker($.extend({}, $.datepicker.regional['{$language}'], $options));");
$options = $this->clientOptions;
$this->clientOptions = false; // the datepicker js widget is already registered
$this->registerWidget('datepicker', DatePickerAsset::className(), $containerID);
$this->clientOptions = $options;
} else {
$this->registerWidget('datepicker', DatePickerAsset::className(), $containerID);
}
}
/**
12 years ago
* Renders the DatePicker widget.
* @return string the rendering result.
*/
12 years ago
protected function renderWidget()
{
$contents = [];
12 years ago
12 years ago
if ($this->inline === false) {
12 years ago
if ($this->hasModel()) {
$contents[] = Html::activeTextInput($this->model, $this->attribute, $this->options);
} else {
$contents[] = Html::textInput($this->name, $this->value, $this->options);
}
} else {
12 years ago
if ($this->hasModel()) {
$contents[] = Html::activeHiddenInput($this->model, $this->attribute, $this->options);
$this->clientOptions['defaultDate'] = $this->model->{$this->attribute};
} else {
$contents[] = Html::hiddenInput($this->name, $this->value, $this->options);
$this->clientOptions['defaultDate'] = $this->value;
}
$this->clientOptions['altField'] = '#' . $this->options['id'];
$contents[] = Html::tag('div', null, $this->containerOptions);
}
12 years ago
return implode("\n", $contents);
}
}