From 542a0a251874f69f9cf2cf9472998dc0a04880c8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 17 Apr 2011 13:47:45 +0200 Subject: [PATCH] show real data in account information --- settings/index.php | 9 ++++++++- settings/templates/index.php | 4 ++-- 2 files changed, 10 insertions(+), 3 deletions(-) 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.

-- 2.39.5