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/admin/customer/LC_Page_Admin_Customer.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Customer extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Customer extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'customer/index.tpl'; 
     
    8688     * @return void 
    8789     */ 
    88     function process() { 
     90    function process() 
     91    { 
    8992        $this->action(); 
    9093        $this->sendResponse(); 
     
    9699     * @return void 
    97100     */ 
    98     function action() { 
     101    function action() 
     102    { 
    99103 
    100104        // パラメーター管理クラス 
     
    147151     * @return void 
    148152     */ 
    149     function destroy() { 
     153    function destroy() 
     154    { 
    150155        parent::destroy(); 
    151156    } 
     
    157162     * @return void 
    158163     */ 
    159     function lfInitParam(&$objFormParam) { 
     164    function lfInitParam(&$objFormParam) 
     165    { 
    160166        SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam); 
    161167        $objFormParam->addParam('編集対象会員ID', 'edit_customer_id', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK')); 
     
    168174     * @return array エラー配列 
    169175     */ 
    170     function lfCheckError(&$objFormParam) { 
     176    function lfCheckError(&$objFormParam) 
     177    { 
    171178        return SC_Helper_Customer_Ex::sfCheckErrorSearchParam($objFormParam); 
    172179    } 
     
    178185     * @return boolean true:成功 false:失敗 
    179186     */ 
    180     function lfDoDeleteCustomer($customer_id) { 
     187    function lfDoDeleteCustomer($customer_id) 
     188    { 
    181189        $arrData = SC_Helper_Customer_Ex::sfGetCustomerDataFromId($customer_id, 'del_flg = 0'); 
    182190        if (SC_Utils_Ex::isBlank($arrData)) { 
     
    198206     * @return boolean true:成功 false:失敗 
    199207     */ 
    200     function lfDoResendMail($customer_id) { 
     208    function lfDoResendMail($customer_id) 
     209    { 
    201210        $arrData = SC_Helper_Customer_Ex::sfGetCustomerDataFromId($customer_id); 
    202211        if (SC_Utils_Ex::isBlank($arrData) or $arrData['del_flg'] == 1) { 
     
    217226     * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト) 
    218227     */ 
    219     function lfDoSearch($arrParam) { 
     228    function lfDoSearch($arrParam) 
     229    { 
    220230        return SC_Helper_Customer_Ex::sfGetSearchData($arrParam); 
    221231    } 
     
    227237     * @return boolean true:成功 false:失敗 
    228238     */ 
    229     function lfDoCSV($arrParam) { 
     239    function lfDoCSV($arrParam) 
     240    { 
    230241        $objSelect = new SC_CustomerList_Ex($arrParam, 'customer'); 
    231242        $order = 'update_date DESC, customer_id DESC'; 
Note: See TracChangeset for help on using the changeset viewer.