# Yii 1 useful plugins ## Yii 1 datetime picker See [CJuiDateTimePicker plugin page](https://www.yiiframework.com/extension/datetimepicker). Download the code of this plugin and paste it to `protected/extensions/CJuiDateTimePicker` folder of your project. *Example:* ```php Yii::import('application.extensions.CJuiDateTimePicker.CJuiDateTimePicker'); $this->widget('CJuiDateTimePicker',array( 'model' => $model, // Model object 'attribute' => 'publication_time', // Attribute name 'mode' => 'datetime', // Use "time","date" or "datetime" (default) 'options' => [ 'minDate' => 0, 'timeText' => 'Время', 'hourText' => 'Часы', 'minuteText' => 'Минуты', 'showButtonPanel' => false, 'timeFormat' => 'hh:mm', 'dateFormat' => "yy-mm-dd", ] // jquery plugin options )); ```