芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/portal.pulsehost.co.uk/modules/widgets/Health.php
fetchData(true); } $countSuccess = count($data['checks']['success'] ?? []); $countWarnings = count($data['checks']['warning'] ?? []); $countDanger = count($data['checks']['danger'] ?? []); $totalCount = $countSuccess + $countDanger; $countPercent = $totalCount > 0 ? round (($countSuccess / $totalCount) * 100, 0) : 100; // fallback to avoid dividing by 0 $ratingMsg = '
Good
'; $ratingIcon = '
'; if ($countPercent < 50) { $ratingMsg = '
Poor
'; $ratingIcon = '
'; } return <<
{$ratingIcon}
Overall Rating
{$ratingMsg}
View Issues
{$countPercent}% Complete (success)
{$countWarnings} Warnings
{$countDanger} Needing Attention
EOF; } }