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/ownersstore/LC_Page_Admin_OwnersStore_Module.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_OwnersStore_Module extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_OwnersStore_Module extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    var $tpl_subno = 'index'; 
     
    4344     * @return void 
    4445     */ 
    45     function init() { 
     46    function init() 
     47    { 
    4648        parent::init(); 
    4749 
     
    5860     * @return void 
    5961     */ 
    60     function process() { 
     62    function process() 
     63    { 
    6164        $this->action(); 
    6265        $this->sendResponse(); 
     
    6871     * @return void 
    6972     */ 
    70     function action() { 
     73    function action() 
     74    { 
    7175        // nothing. 
    7276    } 
     
    7781     * @return void 
    7882     */ 
    79     function destroy() { 
     83    function destroy() 
     84    { 
    8085        parent::destroy(); 
    8186    } 
Note: See TracChangeset for help on using the changeset viewer.