Download the PHP package indigerd/yii2-embedded-models without Composer
On this page you can find all versions of the php package indigerd/yii2-embedded-models. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download indigerd/yii2-embedded-models
More information about indigerd/yii2-embedded-models
Files in indigerd/yii2-embedded-models
Package yii2-embedded-models
Short Description Behaviors for hydration and extraction of embedded models for yii2 framework
License MIT
Informations about the package yii2-embedded-models
Yii2 Embedded Models
Usage
In order to embedd another models to your model using you should extend it from one provided by library. Use HydrateBehavior to embed single model to property or HydrateCollectionBehavior to embed collection of models. To correctly attach behavior you have to provide valid configuration values to following properties:
attribute
name of attribute in primary model in which you want to embedtargetModel
class name of embedded modelhydrator
Hydrator which will be used to hydrate and extract. You can provide class name if you configured hydrator in your DI container, array style definition for Yii::createObject or instance of Hydrator
Your embedded models can also embed another models.
When validate will be called for your primary model it will be called for all your embedded models and fields in your primary model coreesponding to embedded models will be correctly populated with error messages.
Embedded models will be automatically created by behavior when yor model is populated from database or when it is populated with Model::load()
data from request.
To auto populate field that is embedded model with Model::load()
you need to add this field to rules()
as safe
Example of attaching behavior to mongodb ActiveRecord model
All versions of yii2-embedded-models with dependencies
yiisoft/yii2 Version ^2.0.13
yiisoft/yii2-mongodb Version ^2.1
indigerd/hydrator Version *