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.
19 lines
295 B
PHTML
19 lines
295 B
PHTML
12 years ago
|
<?php
|
||
|
class PluginHandler extends Handler_Protected {
|
||
|
function csrf_ignore($method) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
function catchall($method) {
|
||
|
global $pluginhost;
|
||
|
|
||
|
$plugin = $pluginhost->get_plugin($_REQUEST["plugin"]);
|
||
|
|
||
|
if (method_exists($plugin, $method)) {
|
||
|
$plugin->$method();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|