1 book.module | book_permission() |
Implements hook_permission().
File
- core/
modules/ book/ book.module, line 36 - Allows users to create and organize related content in an outline.
Code
function book_permission() {
return array(
'administer book outlines' => array(
'title' => t('Administer book outlines'),
),
'create new books' => array(
'title' => t('Create new books'),
),
'add content to books' => array(
'title' => t('Add content and child pages to books'),
),
);
}