Blame view
sources/apps/files/ajax/getstoragestats.php
278 Bytes
|
03e52840d
|
1 2 3 4 |
<?php
// only need filesystem apps
$RUNTIME_APPTYPES = array('filesystem');
|
|
31b7f2792
|
5 6 7 8 9 |
$dir = '/';
if (isset($_GET['dir'])) {
$dir = $_GET['dir'];
}
|
|
03e52840d
|
10 11 12 |
OCP\JSON::checkLoggedIn(); // send back json |
|
31b7f2792
|
13 |
OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir)));
|