hooks.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * @author Björn Schießle <schiessle@owncloud.com>
  4. * @author Morris Jobke <hey@morrisjobke.de>
  5. * @author Robin McCorkell <robin@mccorkell.me.uk>
  6. *
  7. * @copyright Copyright (c) 2016, ownCloud, Inc.
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. /**
  24. * This class contains all hooks.
  25. */
  26. namespace OCA\Files_Trashbin;
  27. class Hooks {
  28. /**
  29. * clean up user specific settings if user gets deleted
  30. * @param array $params array with uid
  31. *
  32. * This function is connected to the pre_deleteUser signal of OC_Users
  33. * to remove the used space for the trash bin stored in the database
  34. */
  35. public static function deleteUser_hook($params) {
  36. if( \OCP\App::isEnabled('files_trashbin') ) {
  37. $uid = $params['uid'];
  38. Trashbin::deleteUser($uid);
  39. }
  40. }
  41. public static function post_write_hook($params) {
  42. Trashbin::resizeTrash(\OCP\User::getUser());
  43. }
  44. }