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/order/LC_Page_Admin_Order_Disp.php

    r22554 r22567  
    3232 * @version $Id: LC_Page_Admin_Order_Disp.php 20767 2011-03-22 10:07:32Z nanasess $ 
    3333 */ 
    34 class LC_Page_Admin_Order_Disp extends LC_Page_Admin_Order_Ex { 
     34class LC_Page_Admin_Order_Disp extends LC_Page_Admin_Order_Ex  
     35{ 
    3536 
    3637    var $arrShippingKeys = array( 
     
    7576     * @return void 
    7677     */ 
    77     function init() { 
     78    function init() 
     79    { 
    7880        parent::init(); 
    7981        $this->tpl_mainpage = 'order/disp.tpl'; 
     
    100102     * @return void 
    101103     */ 
    102     function process() { 
     104    function process() 
     105    { 
    103106        $this->action(); 
    104107        $this->sendResponse(); 
     
    110113     * @return void 
    111114     */ 
    112     function action() { 
     115    function action() 
     116    { 
    113117 
    114118        $objPurchase = new SC_Helper_Purchase_Ex(); 
     
    137141     * @return void 
    138142     */ 
    139     function destroy() { 
     143    function destroy() 
     144    { 
    140145        parent::destroy(); 
    141146    } 
     
    147152     * @return void 
    148153     */ 
    149     function lfInitParam(&$objFormParam) { 
     154    function lfInitParam(&$objFormParam) 
     155    { 
    150156        // 検索条件のパラメータを初期化 
    151157        parent::lfInitParam($objFormParam); 
     
    259265     * @return void 
    260266     */ 
    261     function setOrderToFormParam(&$objFormParam, $order_id) { 
     267    function setOrderToFormParam(&$objFormParam, $order_id) 
     268    { 
    262269        $objPurchase = new SC_Helper_Purchase_Ex(); 
    263270 
Note: See TracChangeset for help on using the changeset viewer.