summaryrefslogtreecommitdiff
path: root/classes/pluginhandler.php
blob: eb859ab323ce26d920b8af025070ce1be5947704 (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
<?php
class PluginHandler extends Handler_Protected {
	function csrf_ignore($method) {
		return true;
	}

	function catchall($method) {
		global $pluginhost;

		$plugin = $pluginhost->get_plugin($_REQUEST["plugin"]);

		if ($plugin) {
			if (method_exists($plugin, $method)) {
				$plugin->$method();
			} else {
				print json_encode(array("error" => "METHOD_NOT_FOUND"));
			}
		} else {
			print json_encode(array("error" => "PLUGIN_NOT_FOUND"));
		}
	}
}

?>