summaryrefslogtreecommitdiff
path: root/classes/pluginhost.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/pluginhost.php')
-rw-r--r--classes/pluginhost.php31
1 files changed, 30 insertions, 1 deletions
diff --git a/classes/pluginhost.php b/classes/pluginhost.php
index d7926fa4e..b28d2511d 100644
--- a/classes/pluginhost.php
+++ b/classes/pluginhost.php
@@ -3,6 +3,7 @@ class PluginHost {
private $link;
private $hooks = array();
private $plugins = array();
+ private $handlers = array();
const HOOK_ARTICLE_BUTTON = 1;
const HOOK_ARTICLE_FILTER = 2;
@@ -62,7 +63,7 @@ class PluginHost {
foreach ($plugins as $class) {
$class = trim($class);
- $class_file = str_replace("_", "/", strtolower(basename($class)));
+ $class_file = strtolower(basename($class));
$file = dirname(__FILE__)."/../plugins/$class_file/$class_file.php";
if (file_exists($file)) require_once $file;
@@ -75,5 +76,33 @@ class PluginHost {
}
}
+ 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;
+ }
}
?>