We no longer maintain this repository. Use yii2-behaviors
Extension of the class yii\base\Behavior to convert attribute for all simple types and mongoDb types.
public function behaviors()
{
return [
[
'class' => AttributeTypeBehavior::className(),
'attributes' => [
'_id' => 'MongoId',
]
]
];
}
Default events ActiveRecord::EVENT_BEFORE_INSERT
, ActiveRecord::EVENT_BEFORE_UPDATE
Add attributes => ['date' => 'MongoDate']
Add a method to the class AttributeTypeBehavior:
private function setMongoDate(&$value)
{
$value = new \MongoDate(strtotime($value));
}