Blame view

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