Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTranslations()
 {
     return $this->hasMany(ReceivedCountryTranslation::className(), ['country_code' => 'code'])->where(['language_id' => \common\components\TFA::$info['language_id']])->indexBy('language_id');
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCountryTranslations()
 {
     return $this->hasMany(ReceivedCountryTranslation::className(), ['language_id' => 'id']);
 }