You are here

function book_helper_theme in Book helper 6

Same name and namespace in other branches
  1. 7 book_helper.module \book_helper_theme()

Implementation of hook_theme().

File

./book_helper.module, line 345
Improves Drupal's core book module's functionality.

Code

function book_helper_theme() {
  return array(
    'book_helper_admin_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'book_helper.admin.inc',
    ),
  );
}