コード例 #1
0
ファイル: Register.php プロジェクト: arslbbt/mangentovies
 /**
  * Retrieve customer country identifier
  *
  * @return int
  */
 public function getCountryId()
 {
     if ($countryId = $this->getFormData()->getCountryId()) {
         return $countryId;
     }
     return parent::getCountryId();
 }
コード例 #2
0
ファイル: Edit.php プロジェクト: igorvasiliev4/magento_code
 public function getCountryId()
 {
     if ($countryId = $this->getAddress()->getCountryId()) {
         return $countryId;
     }
     return parent::getCountryId();
 }