summaryrefslogtreecommitdiffstats
path: root/usr/local/www/widgets/widgets/services_status.widget.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/widgets/widgets/services_status.widget.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/widgets/widgets/services_status.widget.php')
-rw-r--r--usr/local/www/widgets/widgets/services_status.widget.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/usr/local/www/widgets/widgets/services_status.widget.php b/usr/local/www/widgets/widgets/services_status.widget.php
index 71aa2b5..f41e7f5 100644
--- a/usr/local/www/widgets/widgets/services_status.widget.php
+++ b/usr/local/www/widgets/widgets/services_status.widget.php
@@ -177,7 +177,14 @@ if(isset($_POST['servicestatusfilter'])) {
<?php
$skipservices = explode(",", str_replace(" ", "", $config['widgets']['servicestatusfilter']));
+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((!$service['name']) || (in_array($service['name'], $skipservices)))
continue;
OpenPOWER on IntegriCloud