2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * the navigation frame - displays server, db and table selection tree
6 * @package PhpMyAdmin-Navigation
9 // Include common functionalities
10 require_once './libraries/common.inc.php';
12 // Also initialises the collapsible tree class
13 require_once './libraries/navigation/Navigation.class.php';
16 $response = PMA_Response
::getInstance();
17 if ($response->isAjax()) {
18 $navigation = new PMA_Navigation();
19 $response->addJSON('message', $navigation->getDisplay());
23 __('Fatal error: The navigation can only be accessed via AJAX')