1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpmyadmin_ynh.git synced 2024-09-03 19:56:46 +02:00
phpmyadmin_ynh/sources/server_import.php
2014-01-14 12:28:06 +01:00

27 lines
452 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Server import page
*
* @package PhpMyAdmin
*/
/**
*
*/
require_once 'libraries/common.inc.php';
$response = PMA_Response::getInstance();
$header = $response->getHeader();
$scripts = $header->getScripts();
$scripts->addFile('import.js');
/**
* Does the common work
*/
require 'libraries/server_common.inc.php';
$import_type = 'server';
require 'libraries/display_import.inc.php';
?>