Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/dispatch.php')
-rw-r--r--core/dispatch.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/core/dispatch.php b/core/dispatch.php
new file mode 100644
index 0000000000..42e5a950f7
--- /dev/null
+++ b/core/dispatch.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ * @package Piwik
+ */
+
+use Piwik\Error;
+use Piwik\ExceptionHandler;
+use Piwik\FrontController;
+
+if (!defined('PIWIK_ENABLE_ERROR_HANDLER') || PIWIK_ENABLE_ERROR_HANDLER) {
+ require_once PIWIK_INCLUDE_PATH . '/core/Error.php';
+ Error::setErrorHandler();
+ require_once PIWIK_INCLUDE_PATH . '/core/ExceptionHandler.php';
+ ExceptionHandler::setUp();
+}
+
+FrontController::setUpSafeMode();
+
+if (!defined('PIWIK_ENABLE_DISPATCH') || PIWIK_ENABLE_DISPATCH) {
+ $controller = FrontController::getInstance();
+ $controller->init();
+ $response = $controller->dispatch();
+
+ if (!is_null($response)) {
+ echo $response;
+ }
+}