From: Robin Appelman Date: Sun, 17 Apr 2011 11:47:45 +0000 (+0200) Subject: show real data in account information X-Git-Tag: v3.0~267^2~558^2~87^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=542a0a251874f69f9cf2cf9472998dc0a04880c8;p=nextcloud-server.git show real data in account information --- diff --git a/settings/index.php b/settings/index.php index 31db326f6bc..521f2ade9da 100644 --- a/settings/index.php +++ b/settings/index.php @@ -8,7 +8,14 @@ if( !OC_USER::isLoggedIn()){ } -$tmpl = new OC_TEMPLATE( "settings", "index", "admin" ); +$tmpl = new OC_TEMPLATE( "settings", "index", "admin"); +$used=OC_FILESYSTEM::filesize('/'); +$free=disk_free_space(OC_CONFIG::getValue('datadirectory')); +$total=$free+$used; +$relative=round(($used/$total)*100); +$tmpl->assign('usage',OC_HELPER::humanFileSize($used)); +$tmpl->assign('total_space',OC_HELPER::humanFileSize($total)); +$tmpl->assign('usage_relative',$relative); $tmpl->printPage(); ?> diff --git a/settings/templates/index.php b/settings/templates/index.php index 910437fefc9..f3f0b533a62 100644 --- a/settings/templates/index.php +++ b/settings/templates/index.php @@ -1,8 +1,8 @@
Account information -
 
-

You're currently using 72% (7.2GB) of your 10GB space.

+
 
+

You're currently using % () of your space.