Extracts server_status_queries.php and Server\Status\Queries logic to the controller. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* Displays query statistics for the server
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use PhpMyAdmin\Controllers\Server\Status\QueriesController;
|
|
use PhpMyAdmin\Response;
|
|
use PhpMyAdmin\Server\Status\Data;
|
|
|
|
if (! defined('ROOT_PATH')) {
|
|
define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
|
|
}
|
|
|
|
require_once ROOT_PATH . 'libraries/common.inc.php';
|
|
require_once ROOT_PATH . 'libraries/server_common.inc.php';
|
|
require_once ROOT_PATH . 'libraries/replication.inc.php';
|
|
|
|
$response = Response::getInstance();
|
|
|
|
$controller = new QueriesController(
|
|
$response,
|
|
$GLOBALS['dbi'],
|
|
new Data()
|
|
);
|
|
|
|
$header = $response->getHeader();
|
|
$scripts = $header->getScripts();
|
|
$scripts->addFile('chart.js');
|
|
$scripts->addFile('vendor/jqplot/jquery.jqplot.js');
|
|
$scripts->addFile('vendor/jqplot/plugins/jqplot.pieRenderer.js');
|
|
$scripts->addFile('vendor/jqplot/plugins/jqplot.highlighter.js');
|
|
$scripts->addFile('vendor/jqplot/plugins/jqplot.enhancedPieLegendRenderer.js');
|
|
$scripts->addFile('vendor/jquery/jquery.tablesorter.js');
|
|
$scripts->addFile('server_status_sorter.js');
|
|
$scripts->addFile('server_status_queries.js');
|
|
|
|
$response->addHTML($controller->index());
|