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']); } }