Exemplo n.º 1
0
 /**
  * Retrieve customer country identifier
  *
  * Returnt the customer country id
  * 
  * @return int
  */
 public function getCountryId()
 {
     /** Get Country Id */
     $countryId = $this->getFormData()->getCountryId();
     if ($countryId) {
         return $countryId;
     }
     return parent::getCountryId();
 }