summaryrefslogtreecommitdiff
path: root/classes/pluginhost.php
blob: b28d2511d7423c391d2d649e77fba41bce0a2295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
class PluginHost {
	private $link;
	private $hooks = array();
	private $plugins = array();
	private $handlers = array();

	const HOOK_ARTICLE_BUTTON = 1;
	const HOOK_ARTICLE_FILTER = 2;
	const HOOK_PREFS_TAB = 3;
	const HOOK_PREFS_SECTION = 4;

	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];
	}

	function run_hooks($type, $method, $args) {
		foreach ($this->get_hooks($type) as $hook) {
			$hook->$method($args);
		}
	}

	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);
			$class_file = strtolower(basename($class));
			$file = dirname(__FILE__)."/../plugins/$class_file/$class_file.php";

			if (file_exists($file)) require_once $file;

			if (class_exists($class) && is_subclass_of($class, "Plugin")) {
				$plugin = new $class($this);

				$this->register_plugin($class, $plugin);
			}
		}
	}

	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;
	}
}
?>