コード例 #1
0
ファイル: Address.php プロジェクト: cmsgears/module-core
 /**
  * @return Province
  */
 public function getProvince()
 {
     return $this->hasOne(Province::className(), ['id' => 'provinceId']);
 }
コード例 #2
0
ファイル: Country.php プロジェクト: cmsgears/module-core
 /**
  * @return array - list of Province having all the provinces belonging to this country
  */
 public function getProvinces()
 {
     return $this->hasMany(Province::className(), ['countryId' => 'id']);
 }