%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/ppaobm/vendor/zhuravljov/yii2-datetime-widgets/src/ |
Upload File : |
<?php /** * @link https://github.com/zhuravljov/yii2-datetime-widgets * @copyright Copyright (c) 2017 Roman Zhuravlev * @license http://opensource.org/licenses/BSD-3-Clause */ namespace zhuravljov\yii\widgets; use yii\helpers\Html; use yii\widgets\InputWidget; /** * Class DateWidget * * @author Roman Zhuravlev <zhuravljov@gmail.com> */ abstract class DateWidget extends InputWidget { /** * @var string the template to render the input */ public $template = '{input}'; /** * @var array the HTML attributes for the input tag. */ public $options = [ 'class' => 'form-control', 'autocomplete' => 'off', ]; /** * @var string|null */ public $icon = 'calendar'; /** * Renders field */ public function run() { $this->registerPlugin(); if (is_string($this->icon)) { Html::addCssClass($this->field->options, 'has-feedback'); $this->template = strtr($this->template, [ '{input}' => '{input}' . Html::tag('span', '', [ 'class' => 'form-control-feedback glyphicon glyphicon-' . $this->icon, ]), ]); } return strtr($this->template, [ '{input}' => $this->hasModel() ? Html::activeTextInput($this->model, $this->attribute, $this->options) : Html::textInput($this->name, $this->value, $this->options), ]); } /** * Registers plugin */ abstract protected function registerPlugin(); }