CC-2737: Show disk space used/space available/ disk quota enforcement

-modify airtime-check-system to return values instead of printing
 them directly
-add ability to view select airtime-check-system via web interface
This commit is contained in:
martin 2011-08-30 18:00:03 -04:00
parent 9c6b722722
commit 03cb154bd1
7 changed files with 234 additions and 70 deletions

View file

@ -0,0 +1,10 @@
<?php foreach($this->status as $key=>$value): ?>
<?php list($desc, $status, $downloadLog) = $value;?>
<div>
<?php echo $desc; ?>
<?php echo $status; ?>
<?php if ($downloadLog): ?>
<a href="systemstatus/get-log-file/id/<?php echo $key ?>">Log file</a>
<?php endif; ?>
</div>
<?php endforeach; ?>