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

    r22206 r22567  
    3333 * @version $Id$ 
    3434 */ 
    35 class LC_Page_Admin_Order_Multiple extends LC_Page_Admin_Ex { 
     35class LC_Page_Admin_Order_Multiple extends LC_Page_Admin_Ex  
     36{ 
    3637 
    3738    // }}} 
     
    4344     * @return void 
    4445     */ 
    45     function init() { 
     46    function init() 
     47    { 
    4648        parent::init(); 
    4749        $this->tpl_mainpage = 'order/multiple.tpl'; 
     
    5759     * @return void 
    5860     */ 
    59     function process() { 
     61    function process() 
     62    { 
    6063        $this->action(); 
    6164        $this->sendResponse(); 
     
    6770     * @return void 
    6871     */ 
    69     function action() { 
     72    function action() 
     73    { 
    7074 
    7175        $this->setTemplate($this->tpl_mainpage); 
     
    7882     * @return void 
    7983     */ 
    80     function destroy() { 
     84    function destroy() 
     85    { 
    8186        parent::destroy(); 
    8287    } 
Note: See TracChangeset for help on using the changeset viewer.