You are here

function book_access_user_delete in Book access 7.2

Same name and namespace in other branches
  1. 1.x book_access.module \book_access_user_delete()

Implements hook_user_delete().

File

./book_access.module, line 1129
Allows to set the access control for book nodes on a per book basis. Based on forum_access.module and tac_lite.module.

Code

function book_access_user_delete($account) {
  BookAccess::deleteGrants($account->uid, 'uid');
}