]> git.wh0rd.org - tt-rss.git/blobdiff - public.php
db updates, remove init_connection()
[tt-rss.git] / public.php
index 59e0ef2e3696082acbc9cb9ab2f017a60817747d..1a50538fb7dd8cdbd321927716b6979bfa65d3b2 100644 (file)
                $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
        }
 
-       require_once "functions.php";
        require_once "sessions.php";
+       require_once "functions.php";
        require_once "sanity_check.php";
        require_once "config.php";
        require_once "db.php";
        require_once "db-prefs.php";
 
-       no_cache_incantation();
-
        startup_gettext();
 
-       $script_started = getmicrotime();
+       $script_started = microtime(true);
 
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       if (!init_connection($link)) return;
+       if (!init_plugins($link)) return;
 
        if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
                ob_start("ob_gzhandler");
 
        $method = $_REQUEST["op"];
 
-       $handler = new Handler_Public($link, $_REQUEST);
+       global $pluginhost;
+       $override = $pluginhost->lookup_handler("public", $method);
+
+       if ($override) {
+               $handler = $override;
+       } else {
+               $handler = new Handler_Public($link, $_REQUEST);
+       }
 
-       if ($handler->before($method)) {
+       if (implements_interface($handler, "IHandler") && $handler->before($method)) {
                if ($method && method_exists($handler, $method)) {
                        $handler->$method();
                } else if (method_exists($handler, 'index')) {