You are here

function book_perm in Drupal 5

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

Implementation of hook_perm().

File

modules/book/book.module, line 24
Allows users to collaboratively author a book.

Code

function book_perm() {
  return array(
    'outline posts in books',
    'create book pages',
    'create new books',
    'edit book pages',
    'edit own book pages',
    'see printer-friendly version',
  );
}