Fix indents

This commit is contained in:
billz 2020-02-02 11:57:31 +00:00
parent 8b0c4d7308
commit 857ffb15d4
1 changed files with 11 additions and 11 deletions

View File

@ -12,38 +12,38 @@ $cores = $system->processorCount();
$memused = $system->usedMemory(); $memused = $system->usedMemory();
$memused_status = "primary"; $memused_status = "primary";
if ($memused > 90) { if ($memused > 90) {
$memused_status = "danger"; $memused_status = "danger";
} elseif ($memused > 75) { } elseif ($memused > 75) {
$memused_status = "warning"; $memused_status = "warning";
} elseif ($memused > 0) { } elseif ($memused > 0) {
$memused_status = "success"; $memused_status = "success";
} }
// cpu load // cpu load
$cpuload = $system->systemLoadPercentage(); $cpuload = $system->systemLoadPercentage();
if ($cpuload > 90) { if ($cpuload > 90) {
$cpuload_status = "danger"; $cpuload_status = "danger";
} elseif ($cpuload > 75) { } elseif ($cpuload > 75) {
$cpuload_status = "warning"; $cpuload_status = "warning";
} elseif ($cpuload > 0) { } elseif ($cpuload > 0) {
$cpuload_status = "success"; $cpuload_status = "success";
} }
// cpu temp // cpu temp
$cputemp = $system->systemTemperature(); $cputemp = $system->systemTemperature();
if ($cputemp > 70) { if ($cputemp > 70) {
$cputemp_status = "danger"; $cputemp_status = "danger";
} elseif ($cputemp > 50) { } elseif ($cputemp > 50) {
$cputemp_status = "warning"; $cputemp_status = "warning";
} else { } else {
$cputemp_status = "success"; $cputemp_status = "success";
} }
// hostapd status // hostapd status
$hostapd = $system->hostapdStatus(); $hostapd = $system->hostapdStatus();
if ($hostapd) { if ($hostapd) {
$hostapd_status = "success"; $hostapd_status = "success";
} else { } else {
$hostapd_status = "danger"; $hostapd_status = "danger";
} }