]> git.wh0rd.org - tt-rss.git/blobdiff - classes/pluginhandler.php
add a wrapper for standard error codes returned by backend, also add explanation...
[tt-rss.git] / classes / pluginhandler.php
index eb859ab323ce26d920b8af025070ce1be5947704..5ca5c17d3d344b6bb5c6dc9a4d75c38b0261e4e9 100644 (file)
@@ -5,18 +5,16 @@ class PluginHandler extends Handler_Protected {
        }
 
        function catchall($method) {
-               global $pluginhost;
-
-               $plugin = $pluginhost->get_plugin($_REQUEST["plugin"]);
+               $plugin = PluginHost::getInstance()->get_plugin($_REQUEST["plugin"]);
 
                if ($plugin) {
                        if (method_exists($plugin, $method)) {
                                $plugin->$method();
                        } else {
-                               print json_encode(array("error" => "METHOD_NOT_FOUND"));
+                               print error_json(13);
                        }
                } else {
-                       print json_encode(array("error" => "PLUGIN_NOT_FOUND"));
+                       print error_json(14);
                }
        }
 }