function book_access_theme in Book access 6
Implements hook_theme().
File
- ./
book_access.module, line 296 - Allows access control for book nodes on a per book basis. It is based on forum_access.module and tac_lite.module.
Code
function book_access_theme() {
return array(
'book_access_permissions_form' => array(
'arguments' => array(
'form' => array(),
),
'file' => 'book_access.admin.inc',
),
);
}