kolyasiryk / yii2-date-behavior
This behavior makes it easy to save and to take date in correct format.
Installs: 18 990
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii2-behavior
Requires
- php: >=7.0.0
- yiisoft/yii2: ^2
README
Installation
The preferred way to install this extension is through composer. Check the composer.json for this extension's requirements and dependencies. Read this web tip /wiki on setting the minimum-stability
settings for your application's composer.json.
To install, either run
$ php composer.phar require kolyasiryk/yii2-date-behavior "*"
or add
"kolyasiryk/yii2-date-behavior": "*"
to the require
section of your composer.json
file.
Usage
public function behaviors() { return [ [ 'class' => \kolyasiryk\behaviors\DateBehavior::className(), 'datetimeDisplayFormat' => 'php:d.m.Y H:i', 'attributes' => [ 'start_date' => 'datetime', 'end_date' => 'datetime', ], ], ]; }