]> git.wh0rd.org - tt-rss.git/blob - classes/pluginhandler.php
df7058dcd6d4f78241617e277b7aa481b262dd7c
[tt-rss.git] / classes / pluginhandler.php
1 <?php
2 class PluginHandler extends Handler_Protected {
3 function csrf_ignore($method) {
4 return true;
5 }
6
7 function catchall($method) {
8 global $pluginhost;
9
10 $plugin = $pluginhost->get_plugin($_REQUEST["plugin"]);
11
12 if (method_exists($plugin, $method)) {
13 $plugin->$method();
14 }
15 }
16 }
17
18 ?>