- Move Sanitize to PhpMyAdmin namespace - Move SavedSearches to PhpMyAdmin namespace - Move Scripts to PhpMyAdmin namespace - Move ServerStatusData to PhpMyAdmin namespace - Move Sql to PhpMyAdmin namespace - Move StorageEngine to PhpMyAdmin namespace - Move SubPartition to PhpMyAdmin namespace - Move SysInfoLinux to PhpMyAdmin namespace - Move SysInfoSunOS to PhpMyAdmin namespace - Move SysInfoWINNT to PhpMyAdmin namespace - Move SysInfo to PhpMyAdmin namespace - Move SystemDatabase to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
42 lines
986 B
PHP
42 lines
986 B
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* object the server status page: processes, connections and traffic
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
|
|
use PhpMyAdmin\Message;
|
|
use PhpMyAdmin\Response;
|
|
use PhpMyAdmin\ServerStatusData;
|
|
|
|
require_once 'libraries/common.inc.php';
|
|
require_once 'libraries/server_common.inc.php';
|
|
require_once 'libraries/server_status.lib.php';
|
|
|
|
/**
|
|
* Replication library
|
|
*/
|
|
require_once 'libraries/replication.inc.php';
|
|
require_once 'libraries/replication_gui.lib.php';
|
|
|
|
/**
|
|
* start output
|
|
*/
|
|
$response = Response::getInstance();
|
|
$response->addHTML('<div>');
|
|
|
|
$serverStatusData = new ServerStatusData();
|
|
$response->addHTML($serverStatusData->getMenuHtml());
|
|
if ($serverStatusData->dataLoaded) {
|
|
$response->addHTML(PMA_getHtmlForServerStatus($serverStatusData));
|
|
} else {
|
|
$response->addHTML(
|
|
Message::error(
|
|
__('Not enough privilege to view server status.')
|
|
)->getDisplay()
|
|
);
|
|
}
|
|
$response->addHTML('</div>');
|
|
exit;
|