- Timestamp:
- 2013/05/02 18:11:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/plugin/SC_Plugin_Base.php
r22567 r22796 31 31 * @version $Id: $ 32 32 */ 33 abstract class SC_Plugin_Base 34 { 33 abstract class SC_Plugin_Base { 35 34 36 35 protected $arrSelfInfo; … … 42 41 * @return void 43 42 */ 44 function __construct(array $arrSelfInfo) 45 { 43 function __construct(array $arrSelfInfo) { 46 44 $this->arrSelfInfo = $arrSelfInfo; 47 45 } … … 92 90 * @param integer $priority 93 91 */ 94 function register(SC_Helper_Plugin $objHelperPlugin, $priority) 95 { 92 function register(SC_Helper_Plugin $objHelperPlugin, $priority) { 96 93 if (isset($this->arrSelfInfo['plugin_hook_point'])) { 97 94 $arrHookPoints = $this->arrSelfInfo['plugin_hook_point']; … … 111 108 * @return array $arrSelfInfo 自身のプラグイン情報 112 109 */ 113 function getPluginInfo() 114 { 110 function getPluginInfo() { 115 111 return $this->arrSelfInfo; 116 112 }
Note: See TracChangeset
for help on using the changeset viewer.
