Ignore:
Timestamp:
2013/05/02 18:11:36 (13 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/plugin/SC_Plugin_Base.php

    r22567 r22796  
    3131 * @version $Id: $ 
    3232 */ 
    33 abstract class SC_Plugin_Base  
    34 { 
     33abstract class SC_Plugin_Base { 
    3534 
    3635    protected $arrSelfInfo; 
     
    4241     * @return void 
    4342     */ 
    44     function __construct(array $arrSelfInfo) 
    45     { 
     43    function __construct(array $arrSelfInfo) { 
    4644        $this->arrSelfInfo = $arrSelfInfo; 
    4745    } 
     
    9290     * @param integer $priority 
    9391     */ 
    94     function register(SC_Helper_Plugin $objHelperPlugin, $priority) 
    95     { 
     92    function register(SC_Helper_Plugin $objHelperPlugin, $priority) { 
    9693        if (isset($this->arrSelfInfo['plugin_hook_point'])) { 
    9794            $arrHookPoints = $this->arrSelfInfo['plugin_hook_point']; 
     
    111108     * @return array $arrSelfInfo 自身のプラグイン情報 
    112109     */ 
    113     function getPluginInfo() 
    114     { 
     110    function getPluginInfo() { 
    115111        return $this->arrSelfInfo; 
    116112    } 
Note: See TracChangeset for help on using the changeset viewer.