You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/files_trashbin/ajax/isEmpty.php

14 lines
292 B

<?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)));