Extract HTML from RteList::getRoutineRow method
[phpmyadmin.git] / index.php
blob6fe4765a7d949d8161aadcb0d0f163ba0e929b2b
1 <?php
2 /**
3 * Main loader script
4 */
5 declare(strict_types=1);
7 use PhpMyAdmin\Routing;
9 if (! defined('ROOT_PATH')) {
10 // phpcs:disable PSR1.Files.SideEffects
11 define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
12 // phpcs:enable
15 global $route;
17 require_once ROOT_PATH . 'libraries/common.inc.php';
19 $dispatcher = Routing::getDispatcher();
20 Routing::callControllerForRoute($route, $dispatcher);