Exemplo n.º 1
0
 public static function post_write_hook($params)
 {
     $user = \OCP\User::getUser();
     if (!empty($user)) {
         Trashbin::resizeTrash($user);
     }
 }
Exemplo n.º 2
0
 /**
  * @brief clean up user specific settings if user gets deleted
  * @param array with uid
  *
  * This function is connected to the pre_deleteUser signal of OC_Users
  * to remove the used space for the trash bin stored in the database
  */
 public static function deleteUser_hook($params)
 {
     if (\OCP\App::isEnabled('files_trashbin')) {
         $uid = $params['uid'];
         Trashbin::deleteUser($uid);
     }
 }
Exemplo n.º 3
0
 public static function post_write_hook($params)
 {
     Trashbin::resizeTrash(\OCP\User::getUser());
 }