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/frontparts/LC_Page_FrontParts_LoginCheck.php

    r22206 r22567  
    3434 * @version $Id:LC_Page_FrontParts_LoginCheck.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3535 */ 
    36 class LC_Page_FrontParts_LoginCheck extends LC_Page_Ex { 
     36class LC_Page_FrontParts_LoginCheck extends LC_Page_Ex  
     37{ 
    3738 
    3839    // }}} 
     
    4445     * @return void 
    4546     */ 
    46     function init() { 
     47    function init() 
     48    { 
    4749        parent::init(); 
    4850 
     
    5456     * @return void 
    5557     */ 
    56     function process() { 
     58    function process() 
     59    { 
    5760        $this->action(); 
    5861        $this->sendResponse(); 
     
    6467     * @return void 
    6568     */ 
    66     function action() { 
     69    function action() 
     70    { 
    6771 
    6872        // 会員管理クラス 
     
    209213     * @return void 
    210214     */ 
    211     function destroy() { 
     215    function destroy() 
     216    { 
    212217        parent::destroy(); 
    213218    } 
     
    219224     * @return void 
    220225     */ 
    221     function lfInitParam(&$objFormParam) { 
     226    function lfInitParam(&$objFormParam) 
     227    { 
    222228        $objFormParam->addParam('記憶する', 'login_memory', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    223229        $objFormParam->addParam('メールアドレス', 'login_email', MTEXT_LEN, 'a', array('EXIST_CHECK', 'MAX_LENGTH_CHECK')); 
     
    235241     * @see LC_PageError 
    236242     */ 
    237     function lfGetErrorMessage($error) { 
     243    function lfGetErrorMessage($error) 
     244    { 
    238245        switch ($error) { 
    239246            case TEMP_LOGIN_ERROR: 
Note: See TracChangeset for help on using the changeset viewer.