Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/helper/SC_Helper_Plugin.php

    r22810 r22856  
    2828 * @version $Id$ 
    2929 */ 
    30 class SC_Helper_Plugin  
     30class SC_Helper_Plugin 
    3131{ 
    3232    // プラグインのインスタンスの配列. 
     
    4747    function load($plugin_activate_flg = true) 
    4848    { 
    49  
    5049        if (!defined('CONFIG_REALFILE') || !file_exists(CONFIG_REALFILE)) return; // インストール前 
    5150        if (GC_Utils_Ex::isInstallFunction()) return; // インストール中 
     
    103102            $GLOBALS['_SC_Helper_Plugin_instance']->load($plugin_activate_flg); 
    104103        } 
     104 
    105105        return $GLOBALS['_SC_Helper_Plugin_instance']; 
    106106    } 
     
    127127        if (array_key_exists($hook_point, $this->arrRegistedPluginActions) 
    128128            && is_array($this->arrRegistedPluginActions[$hook_point])) { 
    129  
    130129            krsort($this->arrRegistedPluginActions[$hook_point]); 
    131130            foreach ($this->arrRegistedPluginActions[$hook_point] as $arrFuncs) { 
    132  
    133131                foreach ($arrFuncs as $func) { 
    134132                    if (!is_null($func['function'])) { 
     
    162160    /** 
    163161     * スーパーフックポイントを登録します. 
    164      *  
     162     * 
    165163     * @param Object $objPlugin プラグインのインスタンス 
    166164     * @param string $hook_point スーパーフックポイント 
     
    208206        $idx = $this->makeActionUniqueId($hook_point, $function, $priority); 
    209207        $this->arrRegistedPluginActions[$hook_point][$priority][$idx] = array('function' => $function); 
     208 
    210209        return true; 
    211210    } 
     
    271270            } 
    272271        } 
     272 
    273273        return $arrBlocs; 
    274274    } 
     
    306306     * @param string    $hook_point  hook point 
    307307     * @param array     $arrArgs     argument passing to callback function 
    308      * @param boolean   $plugin_activate_flg  
     308     * @param boolean   $plugin_activate_flg 
    309309     * @return void 
    310310     */ 
Note: See TracChangeset for help on using the changeset viewer.