diff options
Diffstat (limited to 'modules/book/book.module')
-rw-r--r-- | modules/book/book.module | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/book/book.module b/modules/book/book.module index 53c353ded..5437ee5a9 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -20,6 +20,23 @@ function book_node_info() { } /** + * Implementation of hook_theme() + */ +function book_theme() { + return array( + 'book_navigation' => array( + 'arguments' => array('node' => NULL), + ), + 'book_export_html' => array( + 'arguments' => array('title' => NULL, 'content' => NULL), + ), + 'book_admin_table' => array( + 'arguments' => array('form' => NULL), + ), + ); +} + +/** * Implementation of hook_perm(). */ function book_perm() { |