2017 © Pedro Peláez
 

yii2-extension yii2-daterange-validator

Adds a daterange validator that allows to validate if a model attribute is a valid date range format. Specially usefull if you want to use a DateRangePicker widget and you want to filter by from/until values

image

stesi/yii2-daterange-validator

Adds a daterange validator that allows to validate if a model attribute is a valid date range format. Specially usefull if you want to use a DateRangePicker widget and you want to filter by from/until values

  • Wednesday, December 6, 2017
  • by moccia.f
  • Repository
  • 1 Watchers
  • 0 Stars
  • 24 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 4 Versions
  • 9 % Grown

The README.md

Yii2-daterange-validator

Daterange validator that allows to validate if a model attribute is a valid date range format. Specially usefull if you want to use a DateRangePicker widget and you want to filter by from/until values, (*1)

Latest Stable Version Total Downloads Latest Unstable Version License, (*2)

Installation

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

php composer.phar require --prefer-dist nerburish/yii2-daterange-validator "dev-master"

or add, (*5)

"nerburish/yii2-daterange-validator": "dev-master"

to the require section of your composer.json file., (*6)

Exemple: Filter an attribute model by date range

Imagine we have a model with a 'created_at' attribute, and we want to filter that timestamp in our grid by a date range. In our grid we have implemented a field or widget like kartik DateRangePicker (see http://demos.krajee.com/date-range) that fills the 'created_at' input with a date range format Ex: 12/08/2014 to 17/08/2015, (*7)

We need to go to the search model and add the rule to the model. Then, we must to add the $fromDate and $untilDate attributes to the model;, (*8)

use nerburish\daterangevalidator\DateRangeValidator;

public $fromDate;

public $untilDate;

public function rules()
{
    return [
        [['created_at'], DateRangeValidator::className()]
    ];
}

If the created_at value passed to the search model is a valid format range, $fromDate and $untilDate will be assgined with the respective timestamps Then, we could add to the query the next condition:, (*9)

$query->andFilterWhere(['between', 'created_at', $this->fromDate, $this->untilDate]);   

In case we want to use other attribute names instead defaults, we should pass the attribute names that will be used like this:, (*10)

use nerburish\daterangevalidator\DateRangeValidator;

public $myInitialDateName;

public $myUntilDateName;

public function rules()
{
    return [
        [['created_at'], DateRangeValidator::className(), 'fromDateAttribute' => 'myInitialDateName', 'untilDateAttribute' => 'myUntilDateName']
    ];
}

By default, it's expected a date format, and this format is taken from the Yii formatter component, but we can define other formats via parameters. Since only date is passed, automatically the from timestamp is set as 00:00:00, and until timestamp is set as 23:59:59. Also, we can change the separator character. Ex: 12-08-2014 / 17-08-2015, (*11)

public function rules()
{
    return [
        [['created_at'], DateRangeValidator::className(), 'format' => 'php:d-m-Y', 'separator' => ' / ']
    ];
}

However, if we want to directly pass a datetime instead a date format, then we should configure the validator like this:, (*12)

public function rules()
{
    return [
        [['created_at'], DateRangeValidator::className(), 'type' => 'datetime', 'format' => 'php:d/m/Y H:i:s']
    ];
}

In case we just want validate that the range is a valid range and not assign the from and until timestamp to the attibute model, we can configure the validator of this manner:, (*13)

public function rules()
{
    return [
        [['created_at'], DateRangeValidator::className(), 'setAttributes' => false]
    ];
}

The Versions

06/12 2017

dev-master

9999999-dev

Adds a daterange validator that allows to validate if a model attribute is a valid date range format. Specially usefull if you want to use a DateRangePicker widget and you want to filter by from/until values

  Sources   Download

MIT

The Requires

 

by Avatar nerburish

extension yii2 validator date daterange

06/12 2017

v1.2

1.2.0.0

Adds a daterange validator that allows to validate if a model attribute is a valid date range format. Specially usefull if you want to use a DateRangePicker widget and you want to filter by from/until values

  Sources   Download

MIT

The Requires

 

by Avatar nerburish

extension yii2 validator date daterange

05/12 2017

v1.1

1.1.0.0

Adds a daterange validator that allows to validate if a model attribute is a valid date range format. Specially usefull if you want to use a DateRangePicker widget and you want to filter by from/until values

  Sources   Download

MIT

The Requires

 

by Avatar nerburish

extension yii2 validator date daterange

05/12 2017

v1.0

1.0.0.0

Adds a daterange validator that allows to validate if a model attribute is a valid date range format. Specially usefull if you want to use a DateRangePicker widget and you want to filter by from/until values

  Sources   Download

MIT

The Requires

 

by Avatar nerburish

extension yii2 validator date daterange