Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Entry_EmailMobile extends LC_Page_Ex  
    35 { 
     34class LC_Page_Entry_EmailMobile extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846 
     
    5452     * @return void 
    5553     */ 
    56     function process() 
    57     { 
     54    function process() { 
    5855        parent::process(); 
    5956        $this->action(); 
     
    6663     * @return void 
    6764     */ 
    68     function action() 
    69     { 
     65    function action() { 
    7066 
    7167        $objCustomer    = new SC_Customer_Ex(); 
     
    9995     * @return void 
    10096     */ 
    101     function destroy() 
    102     { 
     97    function destroy() { 
    10398        parent::destroy(); 
    10499    } 
     
    110105     * @return void 
    111106     */ 
    112     function lfInitParam(&$objFormParam) 
    113     { 
     107    function lfInitParam(&$objFormParam) { 
    114108        $objFormParam->addParam('メールアドレス', 'email_mobile', null, 'a', 
    115109                                array('NO_SPTAB', 'EXIST_CHECK', 'CHANGE_LOWER', 'EMAIL_CHAR_CHECK', 'EMAIL_CHECK', 'MOBILE_EMAIL_CHECK')); 
     
    124118     * @return array エラー情報の配列 
    125119     */ 
    126     function lfCheckError(&$objFormParam) 
    127     { 
     120    function lfCheckError(&$objFormParam) { 
    128121        $objFormParam->convParam(); 
    129122        $objErr         = new SC_CheckError_Ex(); 
     
    147140     * @return void 
    148141     */ 
    149     function lfRegistEmailMobile($email_mobile, $customer_id) 
    150     { 
     142    function lfRegistEmailMobile($email_mobile, $customer_id) { 
    151143        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    152144        $objQuery->update('dtb_customer', 
Note: See TracChangeset for help on using the changeset viewer.