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/entry/LC_Page_Entry_EmailMobile.php

    r22926 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    4848     * @return void 
    4949     */ 
    50     function process() 
     50    public function process() 
    5151    { 
    5252        parent::process(); 
     
    6060     * @return void 
    6161     */ 
    62     function action() 
     62    public function action() 
    6363    { 
    6464        $objCustomer    = new SC_Customer_Ex(); 
     
    9191     * @return void 
    9292     */ 
    93     function lfInitParam(&$objFormParam) 
     93    public function lfInitParam(&$objFormParam) 
    9494    { 
    9595        $objFormParam->addParam('メールアドレス', 'email_mobile', null, 'a', 
     
    105105     * @return array エラー情報の配列 
    106106     */ 
    107     function lfCheckError(&$objFormParam) 
     107    public function lfCheckError(&$objFormParam) 
    108108    { 
    109109        $objFormParam->convParam(); 
     
    128128     * @return void 
    129129     */ 
    130     function lfRegistEmailMobile($email_mobile, $customer_id) 
     130    public function lfRegistEmailMobile($email_mobile, $customer_id) 
    131131    { 
    132132        $objQuery = SC_Query_Ex::getSingletonInstance(); 
Note: See TracChangeset for help on using the changeset viewer.