Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

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

    r22926 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    8383     * @return void 
    8484     */ 
    85     function process() 
     85    public function process() 
    8686    { 
    8787        $this->action(); 
     
    9494     * @return void 
    9595     */ 
    96     function action() 
     96    public function action() 
    9797    { 
    9898        // パラメーター管理クラス 
     
    143143     * パラメーター情報の初期化 
    144144     * 
    145      * @param array $objFormParam フォームパラメータークラス 
    146      * @return void 
    147      */ 
    148     function lfInitParam(&$objFormParam) 
     145     * @param  array $objFormParam フォームパラメータークラス 
     146     * @return void 
     147     */ 
     148    public function lfInitParam(&$objFormParam) 
    149149    { 
    150150        SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam); 
     
    155155     * エラーチェック 
    156156     * 
    157      * @param array $objFormParam フォームパラメータークラス 
     157     * @param  array $objFormParam フォームパラメータークラス 
    158158     * @return array エラー配列 
    159159     */ 
    160     function lfCheckError(&$objFormParam) 
     160    public function lfCheckError(&$objFormParam) 
    161161    { 
    162162        return SC_Helper_Customer_Ex::sfCheckErrorSearchParam($objFormParam); 
     
    166166     * 会員を削除する処理 
    167167     * 
    168      * @param integer $customer_id 会員ID 
     168     * @param  integer $customer_id 会員ID 
    169169     * @return boolean true:成功 false:失敗 
    170170     */ 
    171     function lfDoDeleteCustomer($customer_id) 
     171    public function lfDoDeleteCustomer($customer_id) 
    172172    { 
    173173        return SC_Helper_Customer_Ex::delete($customer_id); 
     
    177177     * 会員に登録メールを再送する処理 
    178178     * 
    179      * @param integer $customer_id 会員ID 
     179     * @param  integer $customer_id 会員ID 
    180180     * @return boolean true:成功 false:失敗 
    181181     */ 
    182     function lfDoResendMail($customer_id) 
     182    public function lfDoResendMail($customer_id) 
    183183    { 
    184184        $arrData = SC_Helper_Customer_Ex::sfGetCustomerDataFromId($customer_id); 
     
    198198     * 会員一覧を検索する処理 
    199199     * 
    200      * @param array $arrParam 検索パラメーター連想配列 
     200     * @param  array $arrParam 検索パラメーター連想配列 
    201201     * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト) 
    202202     */ 
    203     function lfDoSearch($arrParam) 
     203    public function lfDoSearch($arrParam) 
    204204    { 
    205205        return SC_Helper_Customer_Ex::sfGetSearchData($arrParam); 
     
    209209     * 会員一覧CSVを検索してダウンロードする処理 
    210210     * 
    211      * @param array $arrParam 検索パラメーター連想配列 
     211     * @param  array  $arrParam 検索パラメーター連想配列 
    212212     * @return boolean true:成功 false:失敗 
    213213     */ 
    214     function lfDoCSV($arrParam) 
     214    public function lfDoCSV($arrParam) 
    215215    { 
    216216        $objSelect = new SC_CustomerList_Ex($arrParam, 'customer'); 
Note: See TracChangeset for help on using the changeset viewer.