Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_Log.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Log extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_System_Log extends LC_Page_Admin_Ex { 
    3635 
    3736    var $arrLogList = array(); 
     
    4241     * @return void 
    4342     */ 
    44     function init() 
    45     { 
     43    function init() { 
    4644        parent::init(); 
    4745        $this->tpl_mainpage = 'system/log.tpl'; 
     
    5856     * @return void 
    5957     */ 
    60     function process() 
    61     { 
     58    function process() { 
    6259        $this->action(); 
    6360        $this->sendResponse(); 
     
    6966     * @return void 
    7067     */ 
    71     function action() 
    72     { 
     68    function action() { 
    7369 
    7470        $objFormParam = new SC_FormParam_Ex; 
     
    9894     * @return void 
    9995     */ 
    100     function destroy() 
    101     { 
     96    function destroy() { 
    10297        parent::destroy(); 
    10398    } 
     
    108103     * @return void 
    109104     */ 
    110     function lfInitParam(&$objFormParam) 
    111     { 
     105    function lfInitParam(&$objFormParam) { 
    112106        $objFormParam->addParam('ファイル', 'log', null, '', array()); 
    113107        $objFormParam->addParam('行数', 'line_max', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK'), 50); 
     
    119113     * @return array $arrLogs 取得したログ 
    120114     */ 
    121     function getEccubeLog($log_path_base) 
    122     { 
     115    function getEccubeLog($log_path_base) { 
    123116 
    124117        $index = 0; 
     
    167160     * セキュリティ面をカバーする役割もある。 
    168161     */ 
    169     function getLogPath($log_name) 
    170     { 
     162    function getLogPath($log_name) { 
    171163        if (strlen($log_name) === 0) { 
    172164            return LOG_REALFILE; 
     
    184176     * @return void 
    185177     */ 
    186     function loadLogList() 
    187     { 
     178    function loadLogList() { 
    188179        $this->arrLogList[''] = '標準ログファイル'; 
    189180        $this->arrLogList['CUSTOMER'] = '会員ログイン ログファイル'; 
Note: See TracChangeset for help on using the changeset viewer.