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/regist/LC_Page_Regist.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Regist extends LC_Page_Ex  
    35 { 
     34class LC_Page_Regist extends LC_Page_Ex { 
    3635 
    3736    // {{{ properties 
     
    4544     * @return void 
    4645     */ 
    47     function init() 
    48     { 
     46    function init() { 
    4947        parent::init(); 
    5048    } 
     
    5553     * @return void 
    5654     */ 
    57     function process() 
    58     { 
     55    function process() { 
    5956        parent::process(); 
    6057        $this->action(); 
     
    6764     * @return void 
    6865     */ 
    69     function action() 
    70     { 
     66    function action() { 
    7167 
    7268        switch ($this->getMode()) { 
     
    9692     * @return void 
    9793     */ 
    98     function destroy() 
    99     { 
     94    function destroy() { 
    10095        parent::destroy(); 
    10196    } 
     
    108103     * @return string $arrRegist['secret_key'] 本登録ID 
    109104     */ 
    110     function lfRegistData($array) 
    111     { 
     105    function lfRegistData($array) { 
    112106        $objQuery                   = SC_Query_Ex::getSingletonInstance(); 
    113107        $arrRegist['secret_key']    = SC_Helper_Customer_Ex::sfGetUniqSecretKey(); //本登録ID発行 
     
    129123     * @return array エラーの配列 
    130124     */ 
    131     function lfCheckError($array) 
    132     { 
     125    function lfCheckError($array) { 
    133126        $objErr     = new SC_CheckError_Ex($array); 
    134127 
     
    152145     * @return void 
    153146     */ 
    154     function lfSendRegistMail($registSecretKey) 
    155     { 
     147    function lfSendRegistMail($registSecretKey) { 
    156148        $objQuery       = SC_Query_Ex::getSingletonInstance(); 
    157149        $objCustomer    = new SC_Customer_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.