コード例 #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCities()
 {
     return $this->hasMany(City::className(), ['country_id' => 'country_id']);
 }
コード例 #2
0
ファイル: Province.php プロジェクト: rhosocial/rho.social
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCities()
 {
     return $this->hasMany(City::className(), ['province' => 'alpha2']);
 }
コード例 #3
0
ファイル: ReviewCity.php プロジェクト: vampir2236/cities.ru
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdCity()
 {
     return $this->hasOne(City::className(), ['id' => 'id_city']);
 }
コード例 #4
0
ファイル: Audio.php プロジェクト: roman1970/lis
 public function getCity()
 {
     return $this->hasMany(City::className(), ['city_id' => 'id']);
 }
コード例 #5
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCity()
 {
     return $this->hasOne(City::className(), ['Id' => 'cityId']);
 }
コード例 #6
0
ファイル: District.php プロジェクト: rhosocial/rho.social
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCity0()
 {
     return $this->hasOne(City::className(), ['alpha' => 'city']);
 }
コード例 #7
0
ファイル: Region.php プロジェクト: ViolentStorm/activewall2.1
 public function getCities()
 {
     return $this->hasMany(City::className(), ['region_id' => 'id']);
 }