Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php

    r23057 r23124  
    4040     * @return void 
    4141     */ 
    42     function init() 
     42    public function init() 
    4343    { 
    4444        $this->skip_load_page_layout = true; 
     
    5151     * @return void 
    5252     */ 
    53     function process() 
     53    public function process() 
    5454    { 
    5555        $this->action(); 
     
    6262     * @return void 
    6363     */ 
    64     function action() 
     64    public function action() 
    6565    { 
    6666        //決済処理中ステータスのロールバック 
     
    6969        $objPurchase->checkDbMyPendignOrder(); 
    7070        $objPurchase->checkDbAllPendingOrder(); 
    71          
     71 
    7272        // 会員管理クラス 
    7373        $objCustomer = new SC_Customer_Ex(); 
     
    208208     * パラメーター情報の初期化. 
    209209     * 
    210      * @param SC_FormParam $objFormParam パラメーター管理クラス 
    211      * @return void 
    212      */ 
    213     function lfInitParam(&$objFormParam) 
     210     * @param  SC_FormParam $objFormParam パラメーター管理クラス 
     211     * @return void 
     212     */ 
     213    public function lfInitParam(&$objFormParam) 
    214214    { 
    215215        $objFormParam->addParam('記憶する', 'login_memory', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     
    228228     * @see LC_PageError 
    229229     */ 
    230     function lfGetErrorMessage($error) 
     230    public function lfGetErrorMessage($error) 
    231231    { 
    232232        switch ($error) { 
Note: See TracChangeset for help on using the changeset viewer.