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

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

$dir = '/';

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

OCP\JSON::checkLoggedIn();

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