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