250] ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'menu_location_id' => Yii::t('app', 'Menu Location ID'), 'menu_location_name' => Yii::t('app', 'Menu Location Name'), ]; } /** * @return \yii\db\ActiveQuery */ public function getMenuLocationLangs() { return $this->hasMany(MenuLocationLang::className(), ['menu_location_id' => 'menu_location_id']); } /** * @return \yii\db\ActiveQuery */ public function getLangs() { return $this->hasMany(Language::className(), ['language_id' => 'language_id'])->viaTable('menu_location_lang', ['menu_location_id' => 'menu_location_id']); } }