diff options
author | ShevAbam <shevabam@gmail.com> | 2015-07-14 15:16:12 +0200 |
---|---|---|
committer | ShevAbam <shevabam@gmail.com> | 2015-07-14 15:16:12 +0200 |
commit | 118bb1862cfca13201d349df8ec23b830921efb5 (patch) | |
tree | 068eba472ca5bf77f26e2fa3c408811eb821f9ad /libs/disk.php | |
parent | b330d193bbd0170b6caabd604d30fc64c7b1d2d3 (diff) |
Disk : add filesystem and option to enable/disable it (disk:show_filesystem)
Network usage : center values of receive and transmit
Diffstat (limited to 'libs/disk.php')
-rw-r--r-- | libs/disk.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libs/disk.php b/libs/disk.php index ed04934..f2b21cb 100644 --- a/libs/disk.php +++ b/libs/disk.php @@ -18,6 +18,7 @@ if (!(exec('/bin/df -T | awk -v c=`/bin/df -T | grep -bo "Type" | awk -F: \'{pri else { $mounted_points = array(); + $key = 0; foreach ($df as $mounted) { @@ -30,15 +31,19 @@ else { $mounted_points[] = trim($mount); - $datas[] = array( + $datas[$key] = array( 'total' => Misc::getSize($total * 1024), 'used' => Misc::getSize($used * 1024), 'free' => Misc::getSize($free * 1024), 'percent_used' => trim($percent, '%'), 'mount' => $mount, - 'filesystem' => $filesystem, ); + + if ($Config->get('disk:show_filesystem')) + $datas[$key]['filesystem'] = $filesystem; } + + $key++; } } |