Server IP : 127.0.0.2 / Your IP : 3.19.237.16 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/ |
Upload File : |
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * The navigation panel - displays server, db and table selection tree * * @package PhpMyAdmin-Navigation */ // Include common functionalities require_once './libraries/common.inc.php'; // Also initialises the collapsible tree class require_once './libraries/navigation/Navigation.class.php'; $response = PMA_Response::getInstance(); $navigation = new PMA_Navigation(); if (! $response->isAjax()) { $response->addHTML( PMA_Message::error( __('Fatal error: The navigation can only be accessed via AJAX') ) ); exit; } if (isset($_REQUEST['getNaviSettings']) && $_REQUEST['getNaviSettings']) { $response->addJSON('message', PMA_PageSettings::getNaviSettings()); exit(); } $cfgRelation = PMA_getRelationsParam(); if ($cfgRelation['navwork']) { if (isset($_REQUEST['hideNavItem'])) { if (! empty($_REQUEST['itemName']) && ! empty($_REQUEST['itemType']) && ! empty($_REQUEST['dbName']) ) { $navigation->hideNavigationItem( $_REQUEST['itemName'], $_REQUEST['itemType'], $_REQUEST['dbName'], (! empty($_REQUEST['tableName']) ? $_REQUEST['tableName'] : null) ); } exit; } if (isset($_REQUEST['unhideNavItem'])) { if (! empty($_REQUEST['itemName']) && ! empty($_REQUEST['itemType']) && ! empty($_REQUEST['dbName']) ) { $navigation->unhideNavigationItem( $_REQUEST['itemName'], $_REQUEST['itemType'], $_REQUEST['dbName'], (! empty($_REQUEST['tableName']) ? $_REQUEST['tableName'] : null) ); } exit; } if (isset($_REQUEST['showUnhideDialog'])) { if (! empty($_REQUEST['dbName'])) { $response->addJSON( 'message', $navigation->getItemUnhideDialog($_REQUEST['dbName']) ); } exit; } } // Do the magic $response->addJSON('message', $navigation->getDisplay());