You are here

function book_helper_permission in Book helper 7

Implements hook_permission().

File

./book_helper.module, line 22
Improves Drupal's core book module's functionality.

Code

function book_helper_permission() {
  return array(
    'administer own book outlines' => array(
      'title' => t('Administer Own Book Outlines'),
      'description' => t("Allows a books owner to order book pages from the 'Order' tab."),
    ),
  );
}