D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
application
/
default
/
views
/
scripts
/
partials
/
Filename :
gauge.phtml
back
Copy
<?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; ?>