Translated using Weblate (Portuguese (Brazil))
[phpmyadmin.git] / index.php
blob43d84e42b8a21e1f1e19ea44a10954d762abb2e4
1 <?php
2 /**
3 * Main loader script
4 */
6 declare(strict_types=1);
8 use PhpMyAdmin\Routing;
10 if (! defined('ROOT_PATH')) {
11 // phpcs:disable PSR1.Files.SideEffects
12 define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
13 // phpcs:enable
16 global $route;
18 require_once ROOT_PATH . 'libraries/common.inc.php';
20 $dispatcher = Routing::getDispatcher();
21 Routing::callControllerForRoute($route, $dispatcher);