/**
  * @return \yii\db\ActiveQuery
  */
 public function getTbleditors()
 {
     return $this->hasMany(Tbleditors::className(), ['country_id' => 'country_id']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEditor()
 {
     return $this->hasOne(Tbleditors::className(), ['editor_id' => 'editor_id']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTbleditors()
 {
     return $this->hasMany(Tbleditors::className(), ['education_level_id' => 'education_level_id']);
 }