29 lines
755 B
PHP
29 lines
755 B
PHP
<?php
|
|
|
|
require_once('../lib/base.php');
|
|
require( 'template.php' );
|
|
if( !OC_USER::isLoggedIn()){
|
|
header( "Location: ".OC_HELPER::linkTo( "index.php" ));
|
|
exit();
|
|
}
|
|
|
|
// Highlight navigation entry
|
|
OC_APP::setActiveNavigationEntry( "settings" );
|
|
OC_UTIL::addScript( "settings", "main" );
|
|
OC_UTIL::addStyle( "settings", "settings" );
|
|
|
|
// calculate the disc space
|
|
$used=OC_FILESYSTEM::filesize('/');
|
|
$free=OC_FILESYSTEM::free_space();
|
|
$total=$free+$used;
|
|
$relative=round(($used/$total)*100);
|
|
|
|
// Return template
|
|
$tmpl = new OC_TEMPLATE( "settings", "index", "admin");
|
|
$tmpl->assign('usage',OC_HELPER::humanFileSize($used));
|
|
$tmpl->assign('total_space',OC_HELPER::humanFileSize($total));
|
|
$tmpl->assign('usage_relative',$relative);
|
|
$tmpl->printPage();
|
|
|
|
?>
|