2011-11-15 07:40:57 +00:00
|
|
|
<?php
|
2012-12-09 09:41:22 +00:00
|
|
|
set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
|
|
|
|
get_include_path());
|
2011-12-12 20:20:53 +00:00
|
|
|
|
2013-04-17 11:36:34 +00:00
|
|
|
require_once "autoload.php";
|
2011-12-13 10:49:11 +00:00
|
|
|
require_once "sessions.php";
|
2013-01-04 21:28:07 +00:00
|
|
|
require_once "functions.php";
|
2011-11-15 07:40:57 +00:00
|
|
|
require_once "sanity_check.php";
|
|
|
|
require_once "config.php";
|
|
|
|
require_once "db.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
|
|
|
|
startup_gettext();
|
|
|
|
|
2013-02-27 18:20:14 +00:00
|
|
|
$script_started = microtime(true);
|
2011-11-15 07:40:57 +00:00
|
|
|
|
2013-04-17 12:23:15 +00:00
|
|
|
if (!init_plugins()) return;
|
2011-12-13 10:49:11 +00:00
|
|
|
|
2012-03-20 10:45:43 +00:00
|
|
|
if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
|
2011-12-13 10:49:11 +00:00
|
|
|
ob_start("ob_gzhandler");
|
2011-11-15 07:40:57 +00:00
|
|
|
}
|
|
|
|
|
2011-12-13 10:49:11 +00:00
|
|
|
$method = $_REQUEST["op"];
|
2011-11-15 07:40:57 +00:00
|
|
|
|
2013-04-18 08:27:34 +00:00
|
|
|
$override = PluginHost::getInstance()->lookup_handler("public", $method);
|
2011-11-15 07:40:57 +00:00
|
|
|
|
2012-12-23 19:05:51 +00:00
|
|
|
if ($override) {
|
|
|
|
$handler = $override;
|
|
|
|
} else {
|
2013-04-18 19:19:14 +00:00
|
|
|
$handler = new Handler_Public($_REQUEST);
|
2012-12-23 19:05:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (implements_interface($handler, "IHandler") && $handler->before($method)) {
|
2011-12-13 11:40:42 +00:00
|
|
|
if ($method && method_exists($handler, $method)) {
|
|
|
|
$handler->$method();
|
|
|
|
} else if (method_exists($handler, 'index')) {
|
|
|
|
$handler->index();
|
2011-12-13 10:49:11 +00:00
|
|
|
}
|
2011-12-13 11:40:42 +00:00
|
|
|
$handler->after();
|
|
|
|
return;
|
2011-11-15 07:40:57 +00:00
|
|
|
}
|
|
|
|
|
2011-12-13 10:49:11 +00:00
|
|
|
header("Content-Type: text/plain");
|
2015-03-30 10:02:24 +00:00
|
|
|
print error_json(13);
|
2011-11-15 07:40:57 +00:00
|
|
|
?>
|