Suppress the output if in an Ajax request

This commit is contained in:
ninadsp
2010-05-28 13:05:04 +05:30
parent ed3e6a2925
commit 6276ad45a6

View File

@@ -17,83 +17,84 @@ require_once './libraries/server_common.inc.php';
PMA_checkParameters(array('is_superuser', 'url_query'), TRUE, FALSE); PMA_checkParameters(array('is_superuser', 'url_query'), TRUE, FALSE);
/** if (!$GLOBALS['is_ajax_request']) {
* Counts amount of navigation tabs /**
*/ * Counts amount of navigation tabs
$server_links_count_tabs = 0; */
$server_links_count_tabs = 0;
/** /**
* Put something in $sub_part * Put something in $sub_part
*/ */
if (!isset($sub_part)) { if (!isset($sub_part)) {
$sub_part = ''; $sub_part = '';
} }
/** /**
* Displays tab links * Displays tab links
*/ */
$tabs = array(); $tabs = array();
$tabs['databases']['icon'] = 's_db.png'; $tabs['databases']['icon'] = 's_db.png';
$tabs['databases']['link'] = 'server_databases.php'; $tabs['databases']['link'] = 'server_databases.php';
$tabs['databases']['text'] = __('Databases'); $tabs['databases']['text'] = __('Databases');
$tabs['sql']['icon'] = 'b_sql.png'; $tabs['sql']['icon'] = 'b_sql.png';
$tabs['sql']['link'] = 'server_sql.php'; $tabs['sql']['link'] = 'server_sql.php';
$tabs['sql']['text'] = __('SQL'); $tabs['sql']['text'] = __('SQL');
$tabs['status']['icon'] = 's_status.png'; $tabs['status']['icon'] = 's_status.png';
$tabs['status']['link'] = 'server_status.php'; $tabs['status']['link'] = 'server_status.php';
$tabs['status']['text'] = __('Status'); $tabs['status']['text'] = __('Status');
$tabs['vars']['icon'] = 's_vars.png'; $tabs['vars']['icon'] = 's_vars.png';
$tabs['vars']['link'] = 'server_variables.php'; $tabs['vars']['link'] = 'server_variables.php';
$tabs['vars']['text'] = __('Variables'); $tabs['vars']['text'] = __('Variables');
$tabs['charset']['icon'] = 's_asci.png'; $tabs['charset']['icon'] = 's_asci.png';
$tabs['charset']['link'] = 'server_collations.php'; $tabs['charset']['link'] = 'server_collations.php';
$tabs['charset']['text'] = __('Charsets'); $tabs['charset']['text'] = __('Charsets');
$tabs['engine']['icon'] = 'b_engine.png'; $tabs['engine']['icon'] = 'b_engine.png';
$tabs['engine']['link'] = 'server_engines.php'; $tabs['engine']['link'] = 'server_engines.php';
$tabs['engine']['text'] = __('Engines'); $tabs['engine']['text'] = __('Engines');
if ($is_superuser) { if ($is_superuser) {
$tabs['rights']['icon'] = 's_rights.png'; $tabs['rights']['icon'] = 's_rights.png';
$tabs['rights']['link'] = 'server_privileges.php'; $tabs['rights']['link'] = 'server_privileges.php';
$tabs['rights']['text'] = __('Privileges'); $tabs['rights']['text'] = __('Privileges');
$tabs['replication']['icon'] = 's_replication.png'; $tabs['replication']['icon'] = 's_replication.png';
$tabs['replication']['link'] = 'server_replication.php'; $tabs['replication']['link'] = 'server_replication.php';
$tabs['replication']['text'] = __('Replication'); $tabs['replication']['text'] = __('Replication');
} }
if (! empty($binary_logs)) { if (! empty($binary_logs)) {
$tabs['binlog']['icon'] = 's_tbl.png'; $tabs['binlog']['icon'] = 's_tbl.png';
$tabs['binlog']['link'] = 'server_binlog.php'; $tabs['binlog']['link'] = 'server_binlog.php';
$tabs['binlog']['text'] = __('Binary log'); $tabs['binlog']['text'] = __('Binary log');
} }
$tabs['process']['icon'] = 's_process.png'; $tabs['process']['icon'] = 's_process.png';
$tabs['process']['link'] = 'server_processlist.php'; $tabs['process']['link'] = 'server_processlist.php';
$tabs['process']['text'] = __('Processes'); $tabs['process']['text'] = __('Processes');
$tabs['export']['icon'] = 'b_export.png'; $tabs['export']['icon'] = 'b_export.png';
$tabs['export']['link'] = 'server_export.php'; $tabs['export']['link'] = 'server_export.php';
$tabs['export']['text'] = __('Export'); $tabs['export']['text'] = __('Export');
$tabs['import']['icon'] = 'b_import.png'; $tabs['import']['icon'] = 'b_import.png';
$tabs['import']['link'] = 'server_import.php'; $tabs['import']['link'] = 'server_import.php';
$tabs['import']['text'] = __('Import'); $tabs['import']['text'] = __('Import');
$tabs['synchronize']['icon'] = 's_sync.png'; $tabs['synchronize']['icon'] = 's_sync.png';
$tabs['synchronize']['link'] = 'server_synchronize.php'; $tabs['synchronize']['link'] = 'server_synchronize.php';
$tabs['synchronize']['text'] = __('Synchronize'); $tabs['synchronize']['text'] = __('Synchronize');
echo PMA_generate_html_tabs($tabs, array());
unset($tabs);
echo PMA_generate_html_tabs($tabs, array());
unset($tabs);
} //end if(!$GLOBALS['is_ajax_request'])
/** /**
* Displays a message * Displays a message