/**
  * @return \yii\db\ActiveQuery
  */
 public function getLocation0()
 {
     return $this->hasOne(Area::className(), ['location' => 'location']);
 }
Example #2
0
 public function getArea()
 {
     return $this->hasOne(Area::className(), ['id' => 'area_id']);
 }
Example #3
0
 public function getDistrictArea()
 {
     return $this->hasOne(Area::className(), ['area_id' => 'district']);
 }
Example #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAreas()
 {
     return $this->hasMany(Area::className(), ['cityid' => 'id']);
 }