hadi-aj/yii2-pwt-datepicker

Jalali datepicker

1.0.0 2018-01-25 07:38 UTC

This package is auto-updated.

Last update: 2024-03-29 03:32:21 UTC


README

This Date picker widget work with Iranian calendar, based on Persian Date Picker

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require hadi-aj/yii2-pwt-datepicker "*"

or add

"hadi-aj/yii2-pwt-datepicker": "*"

to the require section of your composer.json file.

Usage

use hadiaj\pwtdatepicker\PwtDatepicker;

// Normal select with ActiveForm & model
echo $form->field($model, 'date')->widget(PwtDatepicker::classname(), [
    'pluginOptions' => [
        'initialValue' => TRUE,
        ...
    ],
]);

// PwtDatepicker without model
echo PwtDatepicker::widget([
    'pluginOptions' => [
        'initialValue' => TRUE,
        ...
    ],
]);

Please, check the Persian Date Picker documentation for further information about its configuration options.

License

Freely distributable under the terms of the WTFPL license.