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/contact/LC_Page_Contact.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Contact extends LC_Page_Ex { 
     34class LC_Page_Contact extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
     
    6668     * @return void 
    6769     */ 
    68     function process() { 
     70    function process() 
     71    { 
    6972        parent::process(); 
    7073        $this->action(); 
     
    7780     * @return void 
    7881     */ 
    79     function action() { 
     82    function action() 
     83    { 
    8084 
    8185        $objDb = new SC_Helper_DB_Ex(); 
     
    140144     * @return void 
    141145     */ 
    142     function destroy() { 
     146    function destroy() 
     147    { 
    143148        parent::destroy(); 
    144149    } 
     
    153158     * @return void 
    154159     */ 
    155     function lfInitParam(&$objFormParam) { 
     160    function lfInitParam(&$objFormParam) 
     161    { 
    156162 
    157163        $objFormParam->addParam('お名前(姓)', 'name01', STEXT_LEN, 'KVa', array('EXIST_CHECK','SPTAB_CHECK','MAX_LENGTH_CHECK')); 
     
    178184     * @return array 入力チェック結果の配列 
    179185     */ 
    180     function lfCheckError(&$objFormParam) { 
     186    function lfCheckError(&$objFormParam) 
     187    { 
    181188        // 入力データを渡す。 
    182189        $arrForm =  $objFormParam->getHashArray(); 
     
    192199     * @return void 
    193200     */ 
    194     function lfSendMail(&$objPage) { 
     201    function lfSendMail(&$objPage) 
     202    { 
    195203        $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 
    196204        $objPage->tpl_shopname = $CONF['shop_name']; 
Note: See TracChangeset for help on using the changeset viewer.