Пример #1
0
 /**
  * @return array configuration of behaviors
  */
 public function behaviors()
 {
     $parentBehaviors = parent::behaviors();
     $thisBehaviors = ['type' => ['class' => ModelTypeAttribute::className(), 'attribute' => 'content_type', 'attributeValue' => self::TYPE_ARTICLE], 'relationDelete' => ['class' => RelationsDelete::className(), 'relations' => ['articleCategories']]];
     return ArrayHelper::merge($parentBehaviors, $thisBehaviors);
 }
Пример #2
0
 /**
  * @return array configuration of behaviors
  */
 public function behaviors()
 {
     $parentBehaviors = parent::behaviors();
     $thisBehaviors = ['type' => ['class' => ModelTypeAttribute::className(), 'attribute' => 'content_type', 'attributeValue' => self::TYPE_PAGE], 'menuItemsReset' => MenuItemsReset::className(), 'relationDelete' => ['class' => RelationsDelete::className(), 'relations' => ['menuItemContents']]];
     return ArrayHelper::merge($parentBehaviors, $thisBehaviors);
 }
Пример #3
0
 /**
  * @return array configuration of behaviors
  */
 public function behaviors()
 {
     return ['type' => ['class' => ModelTypeAttribute::className(), 'attribute' => 'type', 'attributeValue' => self::TYPE_SOUND]];
 }
Пример #4
0
 /**
  * @return array configuration of behaviors
  */
 public function behaviors()
 {
     $parentBehaviors = parent::behaviors();
     $thisBehaviors = ['main' => ['class' => UniqueMainProperty::className(), 'filterAttributes' => [['attribute' => 'category_type', 'operator' => '='], ['attribute' => 'language_id', 'operator' => '=']]], 'type' => ['class' => ModelTypeAttribute::className(), 'attribute' => 'category_type', 'attributeValue' => self::TYPE_CATEGORY], 'menuItemsReset' => MenuItemsReset::className(), 'relationDelete' => ['class' => RelationsDelete::className(), 'relations' => ['articleCategories', 'menuItemContents']]];
     return ArrayHelper::merge($parentBehaviors, $thisBehaviors);
 }
Пример #5
0
 /**
  * @return array configuration of behaviors
  */
 public function behaviors()
 {
     $parentBehaviors = parent::behaviors();
     $thisBehaviors = ['type' => ['class' => ModelTypeAttribute::className(), 'attribute' => 'content_type', 'attributeValue' => self::TYPE_NEWSLETTER]];
     return ArrayHelper::merge($parentBehaviors, $thisBehaviors);
 }
Пример #6
0
 /**
  * @return array configuration of behaviors
  */
 public function behaviors()
 {
     $parentBehaviors = parent::behaviors();
     $thisBehaviors = ['type' => ['class' => ModelTypeAttribute::className(), 'attribute' => 'category_type', 'attributeValue' => self::TYPE_GALLERY], 'relationDelete' => ['class' => RelationsDelete::className(), 'relations' => ['imageGalleries']]];
     return ArrayHelper::merge($parentBehaviors, $thisBehaviors);
 }
Пример #7
0
 /**
  * @return array configuration of behaviors
  */
 public function behaviors()
 {
     return ['type' => ['class' => ModelTypeAttribute::className(), 'attribute' => 'type', 'attributeValue' => self::TYPE_IMAGE], 'relationDelete' => ['class' => RelationsDelete::className(), 'relations' => ['imageGalleries']]];
 }