2 /* vim: set expandtab sw=4 ts=4 sts=4: */
8 declare(strict_types
=1);
10 use PhpMyAdmin\Config\PageSettings
;
11 use PhpMyAdmin\Display\Import
;
12 use PhpMyAdmin\Response
;
14 if (! defined('ROOT_PATH')) {
15 define('ROOT_PATH', __DIR__
. DIRECTORY_SEPARATOR
);
18 global $db, $table, $url_query;
20 require_once ROOT_PATH
. 'libraries/common.inc.php';
22 PageSettings
::showGroup('Import');
24 $response = Response
::getInstance();
25 $header = $response->getHeader();
26 $scripts = $header->getScripts();
27 $scripts->addFile('import.js');
29 $import = new Import();
32 * Gets tables information and displays top links
34 require_once ROOT_PATH
. 'libraries/tbl_common.inc.php';
35 $url_query .= '&goto=tbl_import.php&back=tbl_import.php';