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/system/LC_Page_Admin_System_Log.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Log extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_System_Log extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    var $arrLogList = array(); 
     
    4142     * @return void 
    4243     */ 
    43     function init() { 
     44    function init() 
     45    { 
    4446        parent::init(); 
    4547        $this->tpl_mainpage = 'system/log.tpl'; 
     
    5658     * @return void 
    5759     */ 
    58     function process() { 
     60    function process() 
     61    { 
    5962        $this->action(); 
    6063        $this->sendResponse(); 
     
    6669     * @return void 
    6770     */ 
    68     function action() { 
     71    function action() 
     72    { 
    6973 
    7074        $objFormParam = new SC_FormParam_Ex; 
     
    9498     * @return void 
    9599     */ 
    96     function destroy() { 
     100    function destroy() 
     101    { 
    97102        parent::destroy(); 
    98103    } 
     
    103108     * @return void 
    104109     */ 
    105     function lfInitParam(&$objFormParam) { 
     110    function lfInitParam(&$objFormParam) 
     111    { 
    106112        $objFormParam->addParam('ファイル', 'log', null, '', array()); 
    107113        $objFormParam->addParam('行数', 'line_max', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), 50); 
     
    113119     * @return array $arrLogs 取得したログ 
    114120     */ 
    115     function getEccubeLog($log_path_base) { 
     121    function getEccubeLog($log_path_base) 
     122    { 
    116123 
    117124        $index = 0; 
     
    160167     * セキュリティ面をカバーする役割もある。 
    161168     */ 
    162     function getLogPath($log_name) { 
     169    function getLogPath($log_name) 
     170    { 
    163171        if (strlen($log_name) === 0) { 
    164172            return LOG_REALFILE; 
     
    176184     * @return void 
    177185     */ 
    178     function loadLogList() { 
     186    function loadLogList() 
     187    { 
    179188        $this->arrLogList[''] = '標準ログファイル'; 
    180189        $this->arrLogList['CUSTOMER'] = '会員ログイン ログファイル'; 
Note: See TracChangeset for help on using the changeset viewer.