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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_OwnersStore_Log extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_OwnersStore_Log extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648 
     
    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        switch ($this->getMode()) { 
    7175            case 'detail': 
     
    9195     * @return void 
    9296     */ 
    93     function destroy() { 
     97    function destroy() 
     98    { 
    9499        parent::destroy(); 
    95100    } 
    96101 
    97     function getLogs() { 
     102    function getLogs() 
     103    { 
    98104        $sql =<<<END 
    99105SELECT 
     
    114120    } 
    115121 
    116     function initParam() { 
     122    function initParam() 
     123    { 
    117124        $objForm = new SC_FormParam_Ex(); 
    118125        $objForm->addParam('log_id', 'log_id', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     
    121128    } 
    122129 
    123     function getLogDetail($log_id) { 
     130    function getLogDetail($log_id) 
     131    { 
    124132            $sql =<<<END 
    125133SELECT 
Note: See TracChangeset for help on using the changeset viewer.