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