Ignore:
Timestamp:
2013/06/08 16:35:27 (13 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
Location:
branches/version-2_13-dev/data/class/pages/admin/customer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer.php

    r22739 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php'; 
    2625 
     
    3231 * @version $Id$ 
    3332 */ 
    34 class LC_Page_Admin_Customer extends LC_Page_Admin_Ex  
     33class LC_Page_Admin_Customer extends LC_Page_Admin_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    39  
    4035    /** 
    4136     * Page を初期化する. 
     
    10196    function action() 
    10297    { 
    103  
    10498        // パラメーター管理クラス 
    10599        $objFormParam = new SC_FormParam_Ex(); 
     
    207201        $objHelperMail->setPage($this); 
    208202        $objHelperMail->sfSendRegistMail($arrData['secret_key'], $customer_id); 
     203 
    209204        return true; 
    210205    } 
     
    235230 
    236231        list($where, $arrVal) = $objSelect->getWhere(); 
     232 
    237233        return $objCSV->sfDownloadCsv('2', $where, $arrVal, $order, true); 
    238234    } 
  • branches/version-2_13-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php

    r22567 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php'; 
    2625 
     
    3231 * @version $Id$ 
    3332 */ 
    34 class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex  
     33class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    39  
    4035    /** 
    4136     * Page を初期化する. 
     
    8984    function action() 
    9085    { 
    91  
    9286        // パラメーター管理クラス 
    9387        $objFormParam = new SC_FormParam_Ex(); 
     
    283277            } 
    284278        } 
     279 
    285280        return $arrErr; 
    286281    } 
     
    313308            } 
    314309        } 
     310 
    315311        return SC_Helper_Customer_Ex::sfEditCustomerData($arrData, $arrData['customer_id']); 
    316312    } 
  • branches/version-2_13-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php

    r22567 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php'; 
    2625 
     
    3231 * @version $Id$ 
    3332 */ 
    34 class LC_Page_Admin_Customer_SearchCustomer extends LC_Page_Admin_Ex  
     33class LC_Page_Admin_Customer_SearchCustomer extends LC_Page_Admin_Ex 
    3534{ 
    36  
    37     // }}} 
    38     // {{{ functions 
    39  
    4035    /** 
    4136     * Page を初期化する. 
     
    6964    function action() 
    7065    { 
    71  
    7266        // パラメーター管理クラス 
    7367        $objFormParam = new SC_FormParam_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.