fixed order of achievement title and count
This commit is contained in:
commit
df3dd6466c
3459 changed files with 594367 additions and 0 deletions
39
www/analytics/core/dispatch.php
Normal file
39
www/analytics/core/dispatch.php
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?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;
|
||||
use \Piwik\Plugin\ControllerAdmin as PluginControllerAdmin;
|
||||
|
||||
PluginControllerAdmin::disableEacceleratorIfEnabled();
|
||||
|
||||
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')) {
|
||||
define('PIWIK_ENABLE_DISPATCH', true);
|
||||
}
|
||||
|
||||
if (PIWIK_ENABLE_DISPATCH) {
|
||||
$controller = FrontController::getInstance();
|
||||
$controller->init();
|
||||
$response = $controller->dispatch();
|
||||
|
||||
if (!is_null($response)) {
|
||||
echo $response;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue