bupy7/yii2-date-range-picker

This package is abandoned and no longer maintained. No replacement package was suggested.

Wrapper of bootstrap date range picker for Yii2.

v1.0.1 2015-12-12 12:53 UTC

This package is not auto-updated.

Last update: 2020-01-24 16:03:21 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

Wrapper of bootstrap date range picker for Yii2.

More information about plugin: https://github.com/dangrossman/bootstrap-daterangepicker

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist bupy7/yii2-date-range "*"

or add

"bupy7/yii2-date-range": "*"

to the require section of your composer.json file.

Usage

As field of form:

echo $form->field($model, 'date_range')->widget(DateRangePicker::className(), [
    'pluginOptions' => [
        // see http://www.daterangepicker.com/#options
    ],

    'pluginEvents' => [
        // see http://www.daterangepicker.com/#events
    ],

    // Language of plugin. If `null` then `\yii\base\Application::language` will be used.
    'language' => 'ru',

    // Converting date format from PHP DateTime to Moment.js DateTime.
    'convertDateFormat' => true,

    // Options of field input.
    'options' => [

    ],
]);

As an independent widget:

DateRangePicker::widget([
    'name' => 'date_time',

    'pluginOptions' => [
        // see http://www.daterangepicker.com/#options
    ],

    'pluginEvents' => [
        // see http://www.daterangepicker.com/#events
    ],

    // Language of plugin. If `null` then `\yii\base\Application::language` will be used.
    'language' => 'ru',

    // Converting date format from PHP DateTime to Moment.js DateTime.
    'convertDateFormat' => true,

    // Options of field input.
    'options' => [

    ],
]);

##License

yii2-date-range-picker is released under the BSD 3-Clause License.