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

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

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