getHeader(); $scripts = $header->getScripts(); $scripts->addFile('server_status_queries.js'); // for charting $scripts->addFile('chart.js'); $scripts->addFile('jqplot/jquery.jqplot.js'); $scripts->addFile('jqplot/plugins/jqplot.pieRenderer.js'); $scripts->addFile('jqplot/plugins/jqplot.highlighter.js'); $scripts->addFile('jquery/jquery.tablesorter.js'); $scripts->addFile('server_status_sorter.js'); // Add the html content to the response $response->addHTML('
'); $response->addHTML($serverStatusData->getMenuHtml()); if ($serverStatusData->dataLoaded) { $response->addHTML(PMA_getHtmlForQueryStatistics($serverStatusData)); } else { $response->addHTML( Message::error( __('Not enough privilege to view query statistics.') )->getDisplay() ); } $response->addHTML('
'); exit;