- Timestamp:
- 2013/02/18 19:09:54 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/LC_Page_InputZip.php
r22206 r22567 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_InputZip extends LC_Page_Ex { 34 class LC_Page_InputZip extends LC_Page_Ex 35 { 35 36 36 37 // }}} … … 42 43 * @return void 43 44 */ 44 function init() { 45 function init() 46 { 45 47 parent::init(); 46 48 $this->tpl_message = '住所を検索しています。'; … … 52 54 * @return void 53 55 */ 54 function process() { 56 function process() 57 { 55 58 $objView = new SC_SiteView_Ex(false); 56 59 … … 90 93 * @return void 91 94 */ 92 function destroy() { 95 function destroy() 96 { 93 97 parent::destroy(); 94 98 } … … 100 104 * @return array $arrErr エラーメッセージ配列 101 105 */ 102 function fnErrorCheck($arrRequest) { 106 function fnErrorCheck($arrRequest) 107 { 103 108 // パラメーター管理クラス 104 109 $objFormParam = new SC_FormParam_Ex(); … … 127 132 * @return エラーなし:true エラー:false 128 133 */ 129 function lfInputNameCheck($value) { 134 function lfInputNameCheck($value) 135 { 130 136 // 半角英数字と_(アンダーバー), []以外の文字を使用していたらエラー 131 137 if (strlen($value) > 0 && !preg_match("/^[a-zA-Z0-9_\[\]]+$/", $value)) {
Note: See TracChangeset
for help on using the changeset viewer.
