getstoragestats.php 278 B

12345678910111213141516
  1. <?php
  2. // only need filesystem apps
  3. $RUNTIME_APPTYPES = array('filesystem');
  4. $dir = '/';
  5. if (isset($_GET['dir'])) {
  6. $dir = $_GET['dir'];
  7. }
  8. OCP\JSON::checkLoggedIn();
  9. // send back json
  10. OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir)));