Example #1
0
 public function getAll($countrycode)
 {
     $this->authenticate();
     if (empty($countrycode)) {
         throw new Shineisp_Api_Exceptions(400002, ":: 'countrycode' field");
         exit;
     }
     $states = Regions::fildAllFromCountryCode($countrycode);
     if (empty($states)) {
         return false;
     }
     return $states;
 }