From: Thomas Mueller Date: Wed, 2 Jan 2013 14:06:49 +0000 (+0100) Subject: make usedSpacePercent available in the files app X-Git-Tag: v5.0.0alpha1~192^2~22 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=48c7bed59bce35eb5904dc7c7c80f99ba4126892;p=nextcloud-server.git make usedSpacePercent available in the files app --- diff --git a/apps/files/index.php b/apps/files/index.php index b64bde44cc0..cdbedbba477 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -98,6 +98,9 @@ if (OC_Filesystem::isSharable($dir . '/')) { $permissions |= OCP\PERMISSION_SHARE; } +// information about storage capacities +$storageInfo=OC_Helper::getStorageInfo(); + $tmpl = new OCP\Template('files', 'index', 'user'); $tmpl->assign('fileList', $list->fetchPage(), false); $tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage(), false); @@ -108,4 +111,5 @@ $tmpl->assign('files', $files); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); +$tmpl->assign('usedSpacePercent', $storageInfo['relative']); $tmpl->printPage(); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index edf048c7e13..5246ff1bea9 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -117,3 +117,4 @@ +