2017 © Pedro Peláez
 

yii2-extension yii2-intldatebehavior

Automatic Change Date System of an ActiveRecord After finding It

image

meysampg/yii2-intldatebehavior

Automatic Change Date System of an ActiveRecord After finding It

  • Friday, November 25, 2016
  • by meysampg
  • Repository
  • 1 Watchers
  • 2 Stars
  • 40 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 5 % Grown

The README.md

Yii2 IntlDateBehavior

🟥⚠️ THIS PACKAGE IS ABANDONED. PLEASE SELECT ANOTHER PACKAGE OR FORK THIS REPOSITORY AND INFORM ME ON p.g.meysam [at] gmail [dot] com TO REFFER TO YOUR PACKAGE IN PACKAGIST ⚠️🟥, (*1)

Automatic Change Date System of an ActiveRecord After finding It. Actually it converts date and time system just on representation and keep your model clean. So if you need a converter for change time and save it on DB, you can use IntlDate trait ;)., (*2)

Installation

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

Either run, (*4)

composer require meysampg/yii2-intldatebehavior "*"

or add, (*5)

"meysampg/yii2-intldatebehavior": "*"

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

Usage

Once the extension is installed, simply use it in your class by use meysampg\behaviors\IntlDateBehavior and use it by attaching it as a behavior to your ActiveRecord model:, (*7)

public function behaviors()
{
    return [
        IntlDateBehavior::className(),
    ];
}

Also in your model, you must change the rule of timestamp fields from integer to safe., (*8)

For default, behavior try to show created_at and updated_at in your desired manner which both of them have timestamp type. If you wanna select other attributes, you can assign them as an array (a.e. ['time1', 'time2', 'time3']) to timestampAttributes property., (*9)

Configuration

Configuration of this behavior can be on two way. The first one is using Yii2 configuration array, for example:, (*10)

public function behaviors()
{
    return [
        [
            'class' => IntlDateBehavior::className(),
            'timestampAttributes' => ['create_time', 'update_time', 'another_time'],
            'calendar' => 'persian',
            'format' => 'php:d F Y، H:i:s',
            'locale' => 'fa',
            'tz' => 'Asia/Tehran'
        ],
    ];
}

This is a local configuration. The second way is when you want to use this behavior in multiple model with same configurations, so you should add it as a behavior to model:, (*11)

public function behaviors()
{
    return [
        IntlDateBehavior::className(),
    ];
}

and put the configurations in params.php file. As an example, here is my params.php:, (*12)

<?php

return [
    // some params are here
    'dateTimeFormat' => 'yyyy/MM/dd, HH:mm:ss',
    'dateTimeCalendar' => 'persian',
    'dateTimeLocale' => 'fa',
    'dateTimeZone' => 'Asia/Tehran',
];

In this way you must assign a value to 'dateTimeFormat' for date time format, 'dateTimeCalendar' calendar system, 'dateTimeLocale' for locale of showing date time information and 'dateTimeZone' for timezone of region where datetime must be shown., (*13)

Supported Calendar

Thanks to intldate and intl extension of php, this behavior supports these calendars:, (*14)

  • persian
  • gregorian
  • japanese
  • buddhist
  • chinese
  • indian
  • islamic
  • hebrew
  • coptic
  • ethiopic

Contributions

Report bugs or do your modification and send a pull request!, (*15)

The Versions

25/11 2016

dev-master

9999999-dev

Automatic Change Date System of an ActiveRecord After finding It

  Sources   Download

MIT

The Requires

 

by Meysam P.G.

extension yii2 date activerecord intldate

25/11 2016

v1.1.1

1.1.1.0

Automatic Change Date System of an ActiveRecord After finding It

  Sources   Download

MIT

The Requires

 

by Meysam P.G.

extension yii2 date activerecord intldate

18/11 2016

v1.1.0

1.1.0.0

Automatic Change Date System of an ActiveRecord After finding It

  Sources   Download

MIT

The Requires

 

by Meysam P.G.

extension yii2 date activerecord intldate

17/11 2016

v1.0.1

1.0.1.0

Automatic Change Date System of an ActiveRecord After finding It

  Sources   Download

MIT

The Requires

 

by Meysam P.G.

extension yii2 date activerecord intldate

15/11 2016

v1.0

1.0.0.0

Automatic Change Date System of an ActiveRecord After finding It

  Sources   Download

MIT

The Requires

 

by Meysam P.G.

extension yii2 date activerecord intldate