16 lines
329 B
PHP
16 lines
329 B
PHP
<?php
|
|
|
|
/*
|
|
* Check if trash bin is empty to re-enable the deleted files button if needed
|
|
*/
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
OCP\JSON::callCheck();
|
|
\OC::$server->getSession()->close();
|
|
|
|
$trashStatus = OCA\Files_Trashbin\Trashbin::isEmpty(OCP\User::getUser());
|
|
|
|
OCP\JSON::success(array("data" => array("isEmpty" => $trashStatus)));
|
|
|
|
|