Skip to content

consultnn/yii2-mongodb-types

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

We no longer maintain this repository. Use yii2-behaviors

yii2-mongodb-types

Extension of the class yii\base\Behavior to convert attribute for all simple types and mongoDb types.

Example of a call from the model.
    public function behaviors()
    {
        return [
            [
                'class' => AttributeTypeBehavior::className(),
                'attributes' => [
                    '_id' => 'MongoId',
                ]
            ]
        ];
    }

Default events ActiveRecord::EVENT_BEFORE_INSERT, ActiveRecord::EVENT_BEFORE_UPDATE

Example add convert MongoDate type.

Add attributes => ['date' => 'MongoDate']
Add a method to the class AttributeTypeBehavior:

    private function setMongoDate(&$value)
    {
        $value = new \MongoDate(strtotime($value));
    }

About

[We no longer maintain this repository]

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages