2012-12-23 11:52:18 +01:00
|
|
|
<?php
|
|
|
|
class PluginHost {
|
|
|
|
private $link;
|
|
|
|
private $hooks = array();
|
|
|
|
private $plugins = array();
|
2012-12-23 20:05:51 +01:00
|
|
|
private $handlers = array();
|
2012-12-23 11:52:18 +01:00
|
|
|
|
|
|
|
const HOOK_ARTICLE_BUTTON = 1;
|
|
|
|
const HOOK_ARTICLE_FILTER = 2;
|
2012-12-23 13:15:34 +01:00
|
|
|
const HOOK_PREFS_TAB = 3;
|
|
|
|
const HOOK_PREFS_SECTION = 4;
|
2012-12-23 11:52:18 +01:00
|
|
|
|
|
|
|
function __construct($link) {
|
|
|
|
$this->link = $link;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function register_plugin($name, $plugin) {
|
|
|
|
//array_push($this->plugins, $plugin);
|
|
|
|
$this->plugins[$name] = $plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_link() {
|
|
|
|
return $this->link;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_plugins() {
|
|
|
|
return $this->plugins;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_plugin($name) {
|
|
|
|
return $this->plugins[$name];
|
|
|
|
}
|
|
|
|
|
2012-12-23 13:15:34 +01:00
|
|
|
function run_hooks($type, $method, $args) {
|
|
|
|
foreach ($this->get_hooks($type) as $hook) {
|
|
|
|
$hook->$method($args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-23 11:52:18 +01:00
|
|
|
function add_hook($type, $sender) {
|
|
|
|
if (!is_array($this->hooks[$type])) {
|
|
|
|
$this->hooks[$type] = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
array_push($this->hooks[$type], $sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
function del_hook($type, $sender) {
|
|
|
|
if (is_array($this->hooks[$type])) {
|
|
|
|
$key = array_Search($this->hooks[$type], $sender);
|
|
|
|
if ($key !== FALSE) {
|
|
|
|
unset($this->hooks[$type][$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_hooks($type) {
|
|
|
|
return $this->hooks[$type];
|
|
|
|
}
|
|
|
|
|
|
|
|
function load($classlist) {
|
|
|
|
$plugins = explode(",", $classlist);
|
|
|
|
|
|
|
|
foreach ($plugins as $class) {
|
|
|
|
$class = trim($class);
|
2012-12-23 20:05:51 +01:00
|
|
|
$class_file = strtolower(basename($class));
|
2012-12-23 11:52:18 +01:00
|
|
|
$file = dirname(__FILE__)."/../plugins/$class_file/$class_file.php";
|
|
|
|
|
|
|
|
if (file_exists($file)) require_once $file;
|
|
|
|
|
2012-12-23 12:29:16 +01:00
|
|
|
if (class_exists($class) && is_subclass_of($class, "Plugin")) {
|
2012-12-23 11:52:18 +01:00
|
|
|
$plugin = new $class($this);
|
|
|
|
|
|
|
|
$this->register_plugin($class, $plugin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-23 20:05:51 +01:00
|
|
|
function add_handler($handler, $method, $sender) {
|
|
|
|
$handler = strtolower($handler);
|
|
|
|
$method = strtolower($method);
|
|
|
|
|
|
|
|
if (!is_array($this->handlers[$handler])) {
|
|
|
|
$this->handlers[$handler] = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->handlers[$handler][$method] = $sender;
|
|
|
|
}
|
|
|
|
|
|
|
|
function del_handler($handler, $method) {
|
|
|
|
$handler = strtolower($handler);
|
|
|
|
$method = strtolower($method);
|
|
|
|
|
|
|
|
unset($this->handlers[$handler][$method]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function lookup_handler($handler, $method) {
|
|
|
|
$handler = strtolower($handler);
|
|
|
|
$method = strtolower($method);
|
|
|
|
|
|
|
|
if (is_array($this->handlers[$handler])) {
|
|
|
|
return $this->handlers[$handler][$method];
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-23 11:52:18 +01:00
|
|
|
}
|
|
|
|
?>
|