You are here

function book_perm in Drupal 6

Same name and namespace in other branches
  1. 4 modules/book.module \book_perm()
  2. 5 modules/book/book.module \book_perm()

Implementation of hook_perm().

File

modules/book/book.module, line 41
Allows users to structure the pages of a site in a hierarchy or outline.

Code

function book_perm() {
  return array(
    'add content to books',
    'administer book outlines',
    'create new books',
    'access printer-friendly version',
  );
}