mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Revised service running/stopped icons
This commit is contained in:
parent
d38d215d1d
commit
a03162c874
@ -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";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user