aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/getstoragestats.php
blob: 17415b6933f09d4b1ef35241bada4d35db3ec946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

// only need filesystem apps
$RUNTIME_APPTYPES = array('filesystem');

$dir = '/';

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

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

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