コード例 #1
0
ファイル: TorAds.php プロジェクト: mark38/yii2-site-mng
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCity()
 {
     return $this->hasOne(GeobaseCity::className(), ['id' => 'city_id']);
 }
コード例 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGeobaseCity()
 {
     return $this->hasOne(GeobaseCity::className(), ['id' => 'geobase_city_id'])->orderBy(['name' => SORT_ASC]);
 }