You are here

function book_access_permission in Book access 7.2

Implements hook_permission().

File

./book_access.module, line 1112
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_permission() {
  return array(
    'administer book access' => array(
      'title' => t('Administer book access'),
    ),
    'administer access of any book' => array(
      'title' => t('Administer access of any book'),
    ),
    'administer access of own books' => array(
      'title' => t('Administer access of own books'),
    ),
  );
}