summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_services.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-01-10 17:49:42 -0500
committerjim-p <jimp@pfsense.org>2011-01-10 17:49:42 -0500
commitb2254c7f38051040194936d033f3982397ec1a96 (patch)
tree894b0fccbc7aeb61c7a887ffca07d559cf2087e4 /usr/local/www/status_services.php
parent887b5af57341fb29f1d8dae271315b43beda33d9 (diff)
downloadpfsense-b2254c7f38051040194936d033f3982397ec1a96.zip
pfsense-b2254c7f38051040194936d033f3982397ec1a96.tar.gz
Sort services on the services status page and widget.
Diffstat (limited to 'usr/local/www/status_services.php')
-rwxr-xr-xusr/local/www/status_services.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php
index 779e396..d463f3a 100755
--- a/usr/local/www/status_services.php
+++ b/usr/local/www/status_services.php
@@ -334,9 +334,15 @@ foreach (array('server', 'client') as $mode) {
}
}
}
-
-
+
+function service_name_compare($a, $b) {
+ if (strtolower($a['name']) == strtolower($b['name']))
+ return 0;
+ return (strtolower($a['name']) < strtolower($b['name'])) ? -1 : 1;
+}
+
if (count($services) > 0) {
+ uasort($services, "service_name_compare");
foreach($services as $service) {
if (empty($service['name']))
continue;
OpenPOWER on IntegriCloud