summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/ajax/isEmpty.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_trashbin/ajax/isEmpty.php')
-rw-r--r--apps/files_trashbin/ajax/isEmpty.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files_trashbin/ajax/isEmpty.php b/apps/files_trashbin/ajax/isEmpty.php
new file mode 100644
index 00000000000..2e54c7e77b9
--- /dev/null
+++ b/apps/files_trashbin/ajax/isEmpty.php
@@ -0,0 +1,14 @@
+<?php
+
+/*
+ * Check if trash bin is empty to re-enable the deleted files button if needed
+ */
+
+OCP\JSON::checkLoggedIn();
+OCP\JSON::callCheck();
+
+$trashStatus = OCA\Files_Trashbin\Trashbin::isEmpty(OCP\User::getUser());
+
+OCP\JSON::success(array("data" => array("isEmpty" => $trashStatus)));
+
+