function book_copy_permission in Book Copy 7.2
Same name and namespace in other branches
- 7 book_copy.module \book_copy_permission()
Implements hook_permission().
File
- ./
book_copy.module, line 13 - Book copy, copy book outlines
Code
function book_copy_permission() {
return array(
'copy books' => array(
'title' => t('Copy Books'),
'description' => t('Give user the ability to use the book copy functionality.'),
),
);
}