You are here

function book_access_perm in Book access 6.2

Same name and namespace in other branches
  1. 5 book_access.module \book_access_perm()
  2. 6 book_access.module \book_access_perm()

Implements hook_perm().

File

./book_access.module, line 856
Allows to set the access control for book nodes on a per book basis. It is based on forum_access.module and tac_lite.module.

Code

function book_access_perm() {
  return array(
    'administer book access',
    'administer access of any books',
    'administer access of own books',
  );
}