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/upgrade/LC_Page_Upgrade_Download.php

    r22206 r22567  
    3434 * @version $Id$ 
    3535 */ 
    36 class LC_Page_Upgrade_Download extends LC_Page_Upgrade_Base { 
     36class LC_Page_Upgrade_Download extends LC_Page_Upgrade_Base  
     37{ 
    3738 
    3839    // }}} 
     
    4445     * @return void 
    4546     */ 
    46     function init() { 
     47    function init() 
     48    { 
    4749        parent::init(); 
    4850    } 
     
    5355     * @return void 
    5456     */ 
    55     function process($mode) { 
     57    function process($mode) 
     58    { 
    5659        $objLog  = new LC_Upgrade_Helper_Log; 
    5760        $objLog->start($mode); 
     
    245248     * @return void 
    246249     */ 
    247     function destroy() { 
     250    function destroy() 
     251    { 
    248252        parent::destroy(); 
    249253    } 
    250254 
    251     function initParam() { 
     255    function initParam() 
     256    { 
    252257        $this->objForm = new SC_FormParam_Ex(); 
    253258        $this->objForm->addParam( 
     
    262267     * @param object $objRet 
    263268     */ 
    264     function updateMdlTable($objRet) { 
     269    function updateMdlTable($objRet) 
     270    { 
    265271        $table = 'dtb_module'; 
    266272        $where = 'module_id = ?'; 
     
    295301     * @return 
    296302     */ 
    297     function notifyDownload($mode, $arrCookies) { 
     303    function notifyDownload($mode, $arrCookies) 
     304    { 
    298305        $arrPOSTParams = array( 
    299306            'eccube_url' => HTTP_URL 
     
    308315     * @return boolean 
    309316     */ 
    310     function isValidAccess($mode) { 
     317    function isValidAccess($mode) 
     318    { 
    311319        $objLog = new LC_Upgrade_Helper_Log; 
    312320        switch ($mode) { 
     
    358366    } 
    359367 
    360     function registerUpdateLog($arrLog, $objRet) { 
     368    function registerUpdateLog($arrLog, $objRet) 
     369    { 
    361370        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    362371        $arrInsert = array( 
     
    380389     * LC_Update_Updater::execute()で処理を実行する. 
    381390     */ 
    382     function fileExecute($productCode) { 
     391    function fileExecute($productCode) 
     392    { 
    383393        $file = DATA_REALDIR . 'downloads/update/' . $productCode . '_update.php'; 
    384394        if (file_exists($file)) { 
Note: See TracChangeset for help on using the changeset viewer.