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