255, ], [ [ 'seo_category_id', 'language_id', ], 'unique', 'targetAttribute' => [ 'seo_category_id', 'language_id', ], 'message' => 'The combination of Seo Category ID and Language ID has already been taken.', ], [ [ 'language_id' ], 'exist', 'skipOnError' => true, 'targetClass' => Language::className(), 'targetAttribute' => [ 'language_id' => 'id' ], ], [ [ 'seo_category_id' ], 'exist', 'skipOnError' => true, 'targetClass' => SeoCategory::className(), 'targetAttribute' => [ 'seo_category_id' => 'id' ], ], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'seo_category_id' => Yii::t('app', 'seo_category_id'), 'language_id' => Yii::t('app', 'language_id'), 'title' => Yii::t('app', 'name'), ]; } /** * @return \yii\db\ActiveQuery */ public function getLanguage() { return $this->hasOne(Language::className(), [ 'id' => 'language_id' ]); } /** * @return \yii\db\ActiveQuery */ public function getSeoCategory() { return $this->hasOne(SeoCategory::className(), [ 'id' => 'seo_category_id' ]); } }