dev-master
9999999-devRepresents Yii2 m2m junction relation as PK-array field
The Requires
by Anton Sadovnikoff
dev-dev
dev-devRepresents Yii2 m2m junction relation as PK-array field
The Requires
by Anton Sadovnikoff
Represents Yii2 m2m junction relation as PK-array field
Represents Yii2 m2m junction relation as array field. Stores it's changes as difference without cleaning relation., (*1)
The preferred way to install this extension is through composer., (*2)
Either run, (*3)
$ composer require siddthartha/yii2-relational-set
or add, (*4)
"siddthartha/yii2-relational-set": "*"
to the require
section of your composer.json
file., (*5)
class Host extends \yii\db\ActiveRecord { public $_slaves; /** * {@inheritdoc} */ public function behaviors() { return [ 'sets' => [ 'class' => \siddthartha\behaviors\RelationalSetBehavior::class, 'attributes' => [ '_slaves' => 'slaves', ], ], ]; } /** * @return \yii\db\ActiveQueryInterface */ public function getSlaves() { return $this->hasMany(Slave::class, ['id' => 'id_slave']) ->viaTable(HostSlave::tableName(), ['id_host' => 'id']) ->indexBy('id'); } }
<?=$form->field( $model, '_slaves')->checkboxList(/*...*/)?>
Any changes to relation (junction table) will be executed as insert
and/or update
the needed difference only!, (*6)
Represents Yii2 m2m junction relation as PK-array field
Represents Yii2 m2m junction relation as PK-array field