Example #1
0
 public function getEventLan()
 {
     if (Yii::$app->language == 'ru') {
         return $this->hasOne(Event_ru::className(), ['event_id' => 'id']);
     }
     if (Yii::$app->language == 'en') {
         return $this->hasOne(Event_en::className(), ['event_id' => 'id']);
     }
 }