Panel/modules/status/include/status_functions.php
2025-09-11 13:29:15 -04:00

6 lines
315 B
PHP

<?php
function drawBarDiv($percent, $type){
$percent = round($percent, 2); // Round it to two decimal places
echo '<div class="progress"><div class="progress-bar inline-block" data="' . $percent . '" type="' . $type . '" title="' . strtoupper($type) . ' Percentage Use: ' . $percent . '%"></div></div>';
}
?>