summaryrefslogtreecommitdiff
path: root/classes/pluginhandler.php
blob: 5ca5c17d3d344b6bb5c6dc9a4d75c38b0261e4e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
class PluginHandler extends Handler_Protected {
	function csrf_ignore($method) {
		return true;
	}

	function catchall($method) {
		$plugin = PluginHost::getInstance()->get_plugin($_REQUEST["plugin"]);

		if ($plugin) {
			if (method_exists($plugin, $method)) {
				$plugin->$method();
			} else {
				print error_json(13);
			}
		} else {
			print error_json(14);
		}
	}
}

?>