Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-05-05 19:28:07 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-05-05 19:28:07 +0400
commit5ef0833210044bda22d48dc4c15814cbe03bf4c0 (patch)
tree30a5828607466d0af528a6ceb5569676e8970763 /server_status.php
parent7261550e1a8e5431d7becf0b7884e048ec67398a (diff)
parentb493a89cdc1032abdfa8858fb04b4bfbc724d18d (diff)
Merge branch 'master' into DBI_naming_cleanUp2
Conflicts: sql.php
Diffstat (limited to 'server_status.php')
-rw-r--r--server_status.php35
1 files changed, 25 insertions, 10 deletions
diff --git a/server_status.php b/server_status.php
index 22a2558e28..6ff1ae0127 100644
--- a/server_status.php
+++ b/server_status.php
@@ -60,6 +60,30 @@ exit;
*/
function getServerTrafficHtml($ServerStatusData)
{
+ //display the server state General Information
+ $retval = getServerStateGeneralInfoHtml($ServerStatusData);
+
+ //display the server state traffic
+ $retval .= getServerStateTrafficHtml($ServerStatusData);
+
+ //display the server state connection information
+ $retval .= getServerStateConnectionsHtml($ServerStatusData);
+
+ //display the Table Process List information
+ $retval .= getTableProcesslistHtml($ServerStatusData);
+
+ return $retval;
+}
+
+/**
+ * Prints server state General information
+ *
+ * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class
+ *
+ * @return string
+ */
+function getServerStateGeneralInfoHtml($ServerStatusData)
+{
$hour_factor = 3600 / $ServerStatusData->status['Uptime'];
$start_time = PMA_DBI_fetchValue(
'SELECT UNIX_TIMESTAMP() - ' . $ServerStatusData->status['Uptime']
@@ -127,16 +151,7 @@ function getServerTrafficHtml($ServerStatusData)
}
}
}
-
- //display the server state traffic
- $retval .= getServerStateTrafficHtml($ServerStatusData);
-
- //display the server state connection information
- $retval .= getServerStateConnectionsHtml($ServerStatusData);
-
- //display the Table Process List information
- $retval .= getTableProcesslistHtml($ServerStatusData);
-
+
return $retval;
}