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_Edit.php

    r22537 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Customer_Edit 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/edit.tpl'; 
     
    7476     * @return void 
    7577     */ 
    76     function process() { 
     78    function process() 
     79    { 
    7780        $this->action(); 
    7881        $this->sendResponse(); 
     
    8487     * @return void 
    8588     */ 
    86     function action() { 
     89    function action() 
     90    { 
    8791 
    8892        // パラメーター管理クラス 
     
    197201     * @return void 
    198202     */ 
    199     function destroy() { 
     203    function destroy() 
     204    { 
    200205        parent::destroy(); 
    201206    } 
     
    207212     * @return void 
    208213     */ 
    209     function lfInitParam(&$objFormParam) { 
     214    function lfInitParam(&$objFormParam) 
     215    { 
    210216        // 会員項目のパラメーター取得 
    211217        SC_Helper_Customer_Ex::sfCustomerEntryParam($objFormParam, true); 
     
    222228     * @return void 
    223229     */ 
    224     function lfInitSearchParam(&$objFormParam) { 
     230    function lfInitSearchParam(&$objFormParam) 
     231    { 
    225232        SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam); 
    226233        // 初回受け入れ時用 
     
    234241     * @return array エラー配列 
    235242     */ 
    236     function lfCheckErrorSearchParam(&$objFormParam) { 
     243    function lfCheckErrorSearchParam(&$objFormParam) 
     244    { 
    237245        return SC_Helper_Customer_Ex::sfCheckErrorSearchParam($objFormParam); 
    238246    } 
     
    244252     * @return array エラー配列 
    245253     */ 
    246     function lfCheckError(&$objFormParam) { 
     254    function lfCheckError(&$objFormParam) 
     255    { 
    247256        $arrErr = SC_Helper_Customer_Ex::sfCustomerMypageErrorCheck($objFormParam, true); 
    248257 
     
    283292     * @return array エラー配列 
    284293     */ 
    285     function lfRegistData(&$objFormParam) { 
     294    function lfRegistData(&$objFormParam) 
     295    { 
    286296        $objQuery   =& SC_Query_Ex::getSingletonInstance(); 
    287297        // 登録用データ取得 
     
    312322     * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト) 
    313323     */ 
    314     function lfPurchaseHistory($customer_id, $pageno = 0) { 
     324    function lfPurchaseHistory($customer_id, $pageno = 0) 
     325    { 
    315326        if (SC_Utils_Ex::isBlank($customer_id)) { 
    316327            return array('0', array(), NULL); 
Note: See TracChangeset for help on using the changeset viewer.