Ignore:
Timestamp:
2011/03/07 15:37:16 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)

  • 半SP
File:
1 edited

Legend:

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

    r20534 r20540  
    7373        $this->lfInitParam($objFormParam); 
    7474        $objFormParam->setParam($_POST); 
    75          
     75 
    7676        $mode = $this->getMode(); 
    7777 
     
    8787                $plugin_id = $objFormParam->getValue('plugin_id'); 
    8888                $plugin_code = $objFormParam->getValue('plugin_code'); 
    89                  
     89 
    9090                // プラグインファイルを読み込み、modeで指定されたメソッドを実行 
    9191                $this->arrErr = $this->lfExecPlugin($plugin_id, $plugin_code, $mode); 
     
    228228    function lfUploadPlugin(&$objUpFile, $plugin_dir, $plugin_code, $plugin_file_name) { 
    229229        $arrErr = array(); 
    230          
     230 
    231231        // 必須チェック 
    232232        $arrErr = $objUpFile->checkEXISTS('plugin_file'); 
     
    266266        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    267267        $sqlval = array(); 
    268          
     268 
    269269        $sqlval['plugin_id'] = $objQuery->nextVal('dtb_plugin_plugin_id'); 
    270270        $sqlval['plugin_code'] = $plugin_code; 
     
    290290            $arrErr['plugin_error'] = "※ " . $plugin_code . ".phpが存在しないため実行できません。<br/>"; 
    291291        } 
    292          
     292 
    293293        return $arrErr; 
    294294    } 
     
    308308        // プラグインファイル読み込み 
    309309        $arrErr = $this->lfRequirePluginFile($plugin_code); 
    310          
     310 
    311311        if(count($arrErr) == 0) { 
    312312            $plugin = new $plugin_code(); 
Note: See TracChangeset for help on using the changeset viewer.