- Timestamp:
- 2013/02/18 19:09:54 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/api/operations/AddrFromZip.php
r22206 r22567 31 31 require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php'; 32 32 33 class API_AddrFromZip extends SC_Api_Abstract_Ex { 33 class API_AddrFromZip extends SC_Api_Abstract_Ex 34 { 34 35 35 36 protected $operation_name = 'AddrFromZip'; … … 40 41 protected $default_sub_data = ''; 41 42 42 public function doAction($arrParam) { 43 public function doAction($arrParam) 44 { 43 45 $arrRequest = $this->doInitParam($arrParam); 44 46 if (!$this->isParamError()) { … … 58 60 } 59 61 60 protected function lfInitParam(&$objFormParam) { 62 protected function lfInitParam(&$objFormParam) 63 { 61 64 $objFormParam->addParam('郵便番号1', 'zip1', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 62 65 $objFormParam->addParam('郵便番号2', 'zip2', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 63 66 } 64 67 65 public function getResponseGroupName() { 68 public function getResponseGroupName() 69 { 66 70 return 'AddressResponse'; 67 71 }
Note: See TracChangeset
for help on using the changeset viewer.
