Ignore:
Timestamp:
2013/02/18 19:09:54 (11 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/regist/LC_Page_Regist.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Regist extends LC_Page_Ex { 
     34class LC_Page_Regist extends LC_Page_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    4445     * @return void 
    4546     */ 
    46     function init() { 
     47    function init() 
     48    { 
    4749        parent::init(); 
    4850    } 
     
    5355     * @return void 
    5456     */ 
    55     function process() { 
     57    function process() 
     58    { 
    5659        parent::process(); 
    5760        $this->action(); 
     
    6467     * @return void 
    6568     */ 
    66     function action() { 
     69    function action() 
     70    { 
    6771 
    6872        switch ($this->getMode()) { 
     
    9296     * @return void 
    9397     */ 
    94     function destroy() { 
     98    function destroy() 
     99    { 
    95100        parent::destroy(); 
    96101    } 
     
    103108     * @return string $arrRegist['secret_key'] 本登録ID 
    104109     */ 
    105     function lfRegistData($array) { 
     110    function lfRegistData($array) 
     111    { 
    106112        $objQuery                   = SC_Query_Ex::getSingletonInstance(); 
    107113        $arrRegist['secret_key']    = SC_Helper_Customer_Ex::sfGetUniqSecretKey(); //本登録ID発行 
     
    123129     * @return array エラーの配列 
    124130     */ 
    125     function lfCheckError($array) { 
     131    function lfCheckError($array) 
     132    { 
    126133        $objErr     = new SC_CheckError_Ex($array); 
    127134 
     
    145152     * @return void 
    146153     */ 
    147     function lfSendRegistMail($registSecretKey) { 
     154    function lfSendRegistMail($registSecretKey) 
     155    { 
    148156        $objQuery       = SC_Query_Ex::getSingletonInstance(); 
    149157        $objCustomer    = new SC_Customer_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.