コード例 #1
0
ファイル: Mtprovinces.php プロジェクト: hendrasyp/YII2-Setup
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getProvinceCountry()
 {
     return $this->hasOne(Mtcountries::className(), ['country_id' => 'province_country_id']);
 }
コード例 #2
0
ファイル: Mtcities.php プロジェクト: hendrasyp/YII2-Setup
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCityCountry()
 {
     return $this->hasOne(Mtcountries::className(), ['country_id' => 'city_country_id']);
 }