status_functions.php 315 B

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