1
0

hooks.php 1.5 KB

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