Exemple #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLocation()
 {
     return $this->hasOne(Location::className(), ['id' => 'location_id']);
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLocations()
 {
     return $this->hasMany(Location::className(), ['room_id' => 'id']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSchool()
 {
     return $this->hasOne(Location::className(), ['id' => 'school_id']);
 }