isEmpty.php 292 B

123456789101112131415
  1. <?php
  2. /*
  3. * Check if trash bin is empty to re-enable the deleted files button if needed
  4. */
  5. OCP\JSON::checkLoggedIn();
  6. OCP\JSON::callCheck();
  7. $trashStatus = OCA\Files_Trashbin\Trashbin::isEmpty(OCP\User::getUser());
  8. OCP\JSON::success(array("data" => array("isEmpty" => $trashStatus)));