diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-02-20 13:46:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-02-20 13:46:43 +0000 |
commit | 584f3e886a7c9850d53fedaab2c8f3d0249bda10 (patch) | |
tree | 8a089ab394e25f3703e9e47912ca242e0550be5d /modules/book/book.module | |
parent | 8e0d6b4690866b3dd39bd4128e9845d9fb79b6fc (diff) | |
download | brdo-584f3e886a7c9850d53fedaab2c8f3d0249bda10.tar.gz brdo-584f3e886a7c9850d53fedaab2c8f3d0249bda10.tar.bz2 |
- Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide descriptions for permissions on the permission administration page.
Diffstat (limited to 'modules/book/book.module')
-rw-r--r-- | modules/book/book.module | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/book/book.module b/modules/book/book.module index f4dc78999..31ddb5526 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -40,7 +40,12 @@ function book_theme() { * Implementation of hook_perm(). */ function book_perm() { - return array('add content to books', 'administer book outlines', 'create new books', 'access printer-friendly version'); + return array( + 'add content to books' => t('Add new content and child pages to books.'), + 'administer book outlines' => t('Manage books through the administration panel.'), + 'create new books' => t('Add new top-level books.'), + 'access printer-friendly version' => t('View a book page and all of its sub-pages as a single document for ease of printing. Can be performance heavy.'), + ); } /** |