Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Forgot extends LC_Page_Ex { 
     34class LC_Page_Forgot extends LC_Page_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    5657     * @return void 
    5758     */ 
    58     function init() { 
     59    function init() 
     60    { 
    5961        parent::init(); 
    6062        $this->tpl_title = 'パスワードを忘れた方'; 
     
    7577     * @return void 
    7678     */ 
    77     function process() { 
     79    function process() 
     80    { 
    7881        parent::process(); 
    7982        $this->action(); 
     
    8689     * @return void 
    8790     */ 
    88     function action() { 
     91    function action() 
     92    { 
    8993 
    9094        // パラメーター管理クラス 
     
    147151     * @return string エラー文字列 問題が無ければNULL 
    148152     */ 
    149     function lfCheckForgotMail(&$arrForm, &$arrReminder) { 
     153    function lfCheckForgotMail(&$arrForm, &$arrReminder) 
     154    { 
    150155        $errmsg = NULL; 
    151156        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    175180     * @return void 
    176181     */ 
    177     function lfInitMailCheckParam(&$objFormParam, $device_type) { 
     182    function lfInitMailCheckParam(&$objFormParam, $device_type) 
     183    { 
    178184        $objFormParam->addParam('お名前(姓)', 'name01', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' ,'MAX_LENGTH_CHECK')); 
    179185        $objFormParam->addParam('お名前(名)', 'name02', STEXT_LEN, 'aKV', array('EXIST_CHECK', 'NO_SPTAB', 'SPTAB_CHECK' , 'MAX_LENGTH_CHECK')); 
     
    193199     * @return string エラー文字列 問題が無ければNULL 
    194200     */ 
    195     function lfCheckForgotSecret(&$arrForm, &$arrReminder) { 
     201    function lfCheckForgotSecret(&$arrForm, &$arrReminder) 
     202    { 
    196203        $errmsg = ''; 
    197204        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    253260     * @return void 
    254261     */ 
    255     function lfInitSecretCheckParam(&$objFormParam, $device_type) { 
     262    function lfInitSecretCheckParam(&$objFormParam, $device_type) 
     263    { 
    256264        // メールチェックと同等のチェックを再度行う 
    257265        $this->lfInitMailCheckParam($objFormParam, $device_type); 
     
    267275     * @return void 
    268276     */ 
    269     function destroy() { 
     277    function destroy() 
     278    { 
    270279        parent::destroy(); 
    271280    } 
     
    282291     * FIXME: メールテンプレート編集の方に足すのが望ましい 
    283292     */ 
    284     function lfSendMail(&$CONF, $email, $customer_name, $new_password) { 
     293    function lfSendMail(&$CONF, $email, $customer_name, $new_password) 
     294    { 
    285295        // パスワード変更お知らせメール送信 
    286296        $objMailText = new SC_SiteView_Ex(false); 
Note: See TracChangeset for help on using the changeset viewer.