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/forgot/LC_Page_Forgot.php

    r22580 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Forgot extends LC_Page_Ex  
    35 { 
     34class LC_Page_Forgot extends LC_Page_Ex { 
    3635 
    3736    // {{{ properties 
     
    5756     * @return void 
    5857     */ 
    59     function init() 
    60     { 
     58    function init() { 
    6159        parent::init(); 
    6260        $this->tpl_title = 'パスワードを忘れた方'; 
     
    7775     * @return void 
    7876     */ 
    79     function process() 
    80     { 
     77    function process() { 
    8178        parent::process(); 
    8279        $this->action(); 
     
    8986     * @return void 
    9087     */ 
    91     function action() 
    92     { 
     88    function action() { 
    9389 
    9490        // パラメーター管理クラス 
     
    151147     * @return string エラー文字列 問題が無ければNULL 
    152148     */ 
    153     function lfCheckForgotMail(&$arrForm, &$arrReminder) 
    154     { 
     149    function lfCheckForgotMail(&$arrForm, &$arrReminder) { 
    155150        $errmsg = NULL; 
    156151        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    180175     * @return void 
    181176     */ 
    182     function lfInitMailCheckParam(&$objFormParam, $device_type) 
    183     { 
     177    function lfInitMailCheckParam(&$objFormParam, $device_type) { 
    184178        $objFormParam->addParam('お名前(姓)', 'name01', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' ,'MAX_LENGTH_CHECK')); 
    185179        $objFormParam->addParam('お名前(名)', 'name02', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' , 'MAX_LENGTH_CHECK')); 
     
    199193     * @return string エラー文字列 問題が無ければNULL 
    200194     */ 
    201     function lfCheckForgotSecret(&$arrForm, &$arrReminder) 
    202     { 
     195    function lfCheckForgotSecret(&$arrForm, &$arrReminder) { 
    203196        $errmsg = ''; 
    204197        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    260253     * @return void 
    261254     */ 
    262     function lfInitSecretCheckParam(&$objFormParam, $device_type) 
    263     { 
     255    function lfInitSecretCheckParam(&$objFormParam, $device_type) { 
    264256        // メールチェックと同等のチェックを再度行う 
    265257        $this->lfInitMailCheckParam($objFormParam, $device_type); 
     
    275267     * @return void 
    276268     */ 
    277     function destroy() 
    278     { 
     269    function destroy() { 
    279270        parent::destroy(); 
    280271    } 
     
    291282     * FIXME: メールテンプレート編集の方に足すのが望ましい 
    292283     */ 
    293     function lfSendMail(&$CONF, $email, $customer_name, $new_password) 
    294     { 
     284    function lfSendMail(&$CONF, $email, $customer_name, $new_password) { 
    295285        // パスワード変更お知らせメール送信 
    296286        $objMailText = new SC_SiteView_Ex(false); 
Note: See TracChangeset for help on using the changeset viewer.