255], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'template_location_id' => Yii::t('app', 'template_location_id'), 'template_location_name' => Yii::t('app', 'template_location_name'), 'template_location_title' => Yii::t('app', 'template_location_title'), 'width' => Yii::t('app', 'width'), 'height' => Yii::t('app', 'height'), 'sort' => Yii::t('app', 'sort'), 'is_slider' => Yii::t('app', 'is_slider'), 'is_banner' => Yii::t('app', 'is_banner'), ]; } /** * @return \yii\db\ActiveQuery */ public function getBanners() { return $this->hasMany(Banner::className(), ['template_location_id' => 'template_location_id']); } /** * @return \yii\db\ActiveQuery */ public function getSliders() { return $this->hasMany(Slider::className(), ['template_location_id' => 'template_location_id']); } }