Ignore:
Timestamp:
2013/02/18 19:09:54 (13 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/LC_Page_InputZip.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_InputZip extends LC_Page_Ex { 
     34class LC_Page_InputZip extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_message = '住所を検索しています。'; 
     
    5254     * @return void 
    5355     */ 
    54     function process() { 
     56    function process() 
     57    { 
    5558        $objView = new SC_SiteView_Ex(false); 
    5659 
     
    9093     * @return void 
    9194     */ 
    92     function destroy() { 
     95    function destroy() 
     96    { 
    9397        parent::destroy(); 
    9498    } 
     
    100104     * @return array $arrErr エラーメッセージ配列 
    101105     */ 
    102     function fnErrorCheck($arrRequest) { 
     106    function fnErrorCheck($arrRequest) 
     107    { 
    103108        // パラメーター管理クラス 
    104109        $objFormParam = new SC_FormParam_Ex(); 
     
    127132     * @return エラーなし:true エラー:false 
    128133     */ 
    129     function lfInputNameCheck($value) { 
     134    function lfInputNameCheck($value) 
     135    { 
    130136        // 半角英数字と_(アンダーバー), []以外の文字を使用していたらエラー 
    131137        if (strlen($value) > 0 && !preg_match("/^[a-zA-Z0-9_\[\]]+$/", $value)) { 
Note: See TracChangeset for help on using the changeset viewer.