You are here

function book_made_simple_permission in Book made simple 7.3

Implements hook_permision().

File

./book_made_simple.module, line 32
Automaticly creats a book and simple creation of child pages. Author: M. Morin

Code

function book_made_simple_permission() {
  return array(
    'administer books' => array(
      "title" => t("User will have all rights on books"),
    ),
    'show book reorder tab' => array(
      "title" => t("Show (checked) or hide (unchecked) core book reorder tab"),
    ),
    'show core Outline tab' => array(
      "title" => t("Show (checked) or hide (unchecked) core Outline tab"),
    ),
    'show core Outline form element' => array(
      "title" => t("Show (checked) or hide (unchecked) outline section in form elements."),
    ),
  );
}