You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
639 B
PHP
24 lines
639 B
PHP
<?php
|
|
class PluginHandler extends Handler_Protected {
|
|
function csrf_ignore($method) {
|
|
return true;
|
|
}
|
|
|
|
function catchall($method) {
|
|
$plugin_name = clean($_REQUEST["plugin"]);
|
|
$plugin = PluginHost::getInstance()->get_plugin($plugin_name);
|
|
|
|
if ($plugin) {
|
|
if (method_exists($plugin, $method)) {
|
|
$plugin->$method();
|
|
} else {
|
|
user_error("PluginHandler: Requested unknown method '$method' of plugin '$plugin_name'.", E_USER_WARNING);
|
|
print error_json(13);
|
|
}
|
|
} else {
|
|
user_error("PluginHandler: Requested method '$method' of unknown plugin '$plugin_name'.", E_USER_WARNING);
|
|
print error_json(14);
|
|
}
|
|
}
|
|
}
|