function book_access_ui_theme in Book access 6.2
Same name and namespace in other branches
- 7.2 book_access_ui.module \book_access_ui_theme()
Implements hook_theme().
File
- ./
book_access_ui.module, line 145 - User interface for the Book access module.
Code
function book_access_ui_theme() {
return array(
'book_access_ui_grants_form' => array(
'arguments' => array(
'form' => array(),
),
'file' => 'book_access_ui.admin.inc',
),
'book_access_ui_settings' => array(
'arguments' => array(
'form' => array(),
),
'file' => 'book_access_ui.admin.inc',
),
);
}