Revised service running/stopped icons

This commit is contained in:
Stephen Beaver 2016-09-14 20:52:55 -04:00
parent d38d215d1d
commit a03162c874

View File

@ -460,14 +460,14 @@ function get_service_status_icon($service, $withtext = true, $smallicon = false,
if (get_service_status($service)) {
$statustext = gettext("Running");
$text_class = "text-success";
$fa_class = "fa fa-play";
$fa_class = "fa fa-check-circle";
$fa_class_thumbs = "fa fa-thumbs-o-up";
$Thumbs_UpDown = "Thumbs up";
} else {
if (is_service_enabled($service['name'])) {
$statustext = gettext("Stopped");
$text_class = "text-danger";
$fa_class = "fa fa-stop";
$fa_class = "fa fa-times-circle";
} else {
$statustext = gettext("Disabled");
$text_class = "text-warning";