summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/getstoragestats.php
blob: 4ab5b9a779c6d084e95679a55394fc0976761e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

$dir = '/';

if (isset($_GET['dir'])) {
	$dir = $_GET['dir'];
}

OCP\JSON::checkLoggedIn();
\OC::$server->getSession()->close();

// send back json
OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir)));