Files
server/opt/psa/admin/application/default/views/scripts/partials/gauge.phtml
2026-01-07 20:52:11 +01:00

17 lines
619 B
PHTML

<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>
<?php if ($this->limitDetails['limitValue'] > 0): ?>
<div class="progress-box">
<div class="progress progress-sm">
<div class="progress-bar" style="width: <?php echo $this->escape(min($this->limitDetails['percent'], 100)); ?>%;"></div>
</div>
<div class="progress-label"><?php echo $this->escape($this->limitDetails['usageString']) . ($this->showPercent ? " ({$this->limitDetails['percent']}%)" : ''); ?></div>
</div>
<?php else: ?>
<?php echo $this->escape($this->limitDetails['usageString']); ?>
<?php endif; ?>