2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Front controller for setup script
6 * @package PhpMyAdmin-Setup
7 * @license http://www.gnu.org/licenses/gpl.html GNU GPL 2.0
13 require './lib/common.inc.php';
15 $page = isset($_GET['page']) ?
$_GET['page'] : null;
16 $page = preg_replace('/[^a-z]/', '', $page);
20 if (!file_exists("./setup/frames/$page.inc.php")) {
21 // it will happen only when entering URL by hand, we don't care for these cases
22 PMA_fatalError(__('Wrong GET file attribute value'));
25 // Handle done action info
26 $action_done = isset($_GET['action_done']) ?
$_GET['action_done'] : null;
27 $action_done = preg_replace('/[^a-z_]/', '', $action_done);
33 <html xmlns
="http://www.w3.org/1999/xhtml">
35 <meta charset
="utf-8" />
36 <title
>phpMyAdmin setup
</title
>
37 <link href
="../favicon.ico" rel
="icon" type
="image/x-icon" />
38 <link href
="../favicon.ico" rel
="shortcut icon" type
="image/x-icon" />
39 <link href
="styles.css" rel
="stylesheet" type
="text/css" />
40 <script type
="text/javascript" src
="../js/jquery/jquery-1.11.1.min.js"></script
>
41 <script type
="text/javascript" src
="../js/jquery/jquery-ui-1.11.2.min.js">
43 <script type
="text/javascript" src
="ajax.js"></script
>
44 <script type
="text/javascript" src
="../js/config.js"></script
>
45 <script type
="text/javascript" src
="scripts.js"></script
>
46 <script type
="text/javascript" src
="../js/messages.php"></script
>
49 <h1
><span
class="blue">php
</span
><span
class="orange">MyAdmin
</span
> setup
</h1
>
52 require './setup/frames/menu.inc.php';
57 require "./setup/frames/$page.inc.php";