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/entry/LC_Page_Entry_EmailMobile.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Entry_EmailMobile extends LC_Page_Ex { 
     34class LC_Page_Entry_EmailMobile extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648 
     
    5254     * @return void 
    5355     */ 
    54     function process() { 
     56    function process() 
     57    { 
    5558        parent::process(); 
    5659        $this->action(); 
     
    6366     * @return void 
    6467     */ 
    65     function action() { 
     68    function action() 
     69    { 
    6670 
    6771        $objCustomer    = new SC_Customer_Ex(); 
     
    9599     * @return void 
    96100     */ 
    97     function destroy() { 
     101    function destroy() 
     102    { 
    98103        parent::destroy(); 
    99104    } 
     
    105110     * @return void 
    106111     */ 
    107     function lfInitParam(&$objFormParam) { 
     112    function lfInitParam(&$objFormParam) 
     113    { 
    108114        $objFormParam->addParam('メールアドレス', 'email_mobile', null, 'a', 
    109115                                array('NO_SPTAB', 'EXIST_CHECK', 'CHANGE_LOWER', 'EMAIL_CHAR_CHECK', 'EMAIL_CHECK', 'MOBILE_EMAIL_CHECK')); 
     
    118124     * @return array エラー情報の配列 
    119125     */ 
    120     function lfCheckError(&$objFormParam) { 
     126    function lfCheckError(&$objFormParam) 
     127    { 
    121128        $objFormParam->convParam(); 
    122129        $objErr         = new SC_CheckError_Ex(); 
     
    140147     * @return void 
    141148     */ 
    142     function lfRegistEmailMobile($email_mobile, $customer_id) { 
     149    function lfRegistEmailMobile($email_mobile, $customer_id) 
     150    { 
    143151        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    144152        $objQuery->update('dtb_customer', 
Note: See TracChangeset for help on using the changeset viewer.