php實現網站外掛程式機制的方法

來源:互聯網
上載者:User

首先是外掛程式的管理類的實現: 複製代碼 代碼如下:<?
/**
* STBLOG PluginManager Class
*
* 外掛程式機制的實現核心類
*
* @package STBLOG
* @subpackage Libraries
* @category Libraries
* @author Saturn
* @link http://www.cnsaturn.com/
*/
class PluginManager
{
/**
* 監聽登入的外掛程式
*
* @access private
* @var array
*/
private $_listeners = array();
/**
* 建構函式
*
* @access public
* @return void
*/
public function __construct()
{
#這裡$plugin數組包含我們擷取已經由使用者啟用的外掛程式資訊
#為示範方便,我們假定$plugin中至少包含
#$plugin = array(
# 'name' => '外掛程式名稱',
# 'directory'=>'外掛程式安裝目錄'
#);
$plugins = get_active_plugins();#這個函數請自行實現
if($plugins)
{
foreach($plugins as $plugin)
{//假定每個外掛程式檔案夾中包含一個actions.php檔案,它是外掛程式的具體實現
if (@file_exists(STPATH .'plugins/'.$plugin['directory'].'/actions.php'))
{
include_once(STPATH .'plugins/'.$plugin['directory'].'/actions.php');
$class = $plugin['name'].'_actions';
if (class_exists($class))
{
//初始化所有外掛程式
new $class($this);
}
}
}
}
#此處做些日誌記錄方面的東西
}

/**
* 註冊需要監聽的外掛程式方法(鉤子)
*
* @param string $hook
* @param object $reference
* @param string $method
*/
function register($hook, &$reference, $method)
{
//擷取外掛程式要實現的方法
$key = get_class($reference).'->'.$method;
//將外掛程式的引用連同方法push進監聽數組中
$this->_listeners[$hook][$key] = array(&$reference, $method);
#此處做些日誌記錄方面的東西
}
/**
* 觸發一個鉤子
*
* @param string $hook 鉤子的名稱
* @param mixed $data 鉤子的入參
* @return mixed
*/
function trigger($hook, $data='')
{
$result = '';
//查看要實現的鉤子,是否在監聽數組之中
if (isset($this->_listeners[$hook]) && is_array($this->_listeners[$hook]) && count($this->_listeners[$hook]) > 0)
{
// 迴圈調用開始
foreach ($this->_listeners[$hook] as $listener)
{
// 取出外掛程式對象的引用和方法
$class =& $listener[0];
$method = $listener[1];
if(method_exists($class,$method))
{
// 動態調用外掛程式的方法
$result .= $class->$method($data);
}
}
}
#此處做些日誌記錄方面的東西
return $result;
}
}
?>

然後是外掛程式的具體實現方法: 複製代碼 代碼如下:<?
/**
* 這是一個Hello World簡單外掛程式的實現
*
* @package DEMO
* @subpackage DEMO
* @category Plugins
* @author Saturn
* @link http://www.cnsaturn.com/
*/
/**
*需要注意的幾個預設規則:
* 1. 本外掛程式類的檔案名稱必須是action
* 2. 外掛程式類的名稱必須是{外掛程式名_actions}
*/
class DEMO_actions
{
//解析函數的參數是pluginManager的引用
function __construct(&$pluginManager)
{
//註冊這個外掛程式
//第一個參數是鉤子的名稱
//第二個參數是pluginManager的引用
//第三個是外掛程式所執行的方法
$pluginManager->register('demo', $this, 'say_hello');
}

function say_hello()
{
echo 'Hello World';
}
}
?>

比如我要將say_hello放到我部落格首頁Index.php,那麼你在index.php中的某個位置寫下:(作者原話)複製代碼 代碼如下:$pluginManager->trigger('demo','');

以上就是一個外掛程式機制的實現,over!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.