You are here

function book_helper_block_info in Book helper 7

Implements hook_block_info().

File

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

Code

function book_helper_block_info() {
  $blocks['book-helper-inline-navigation'] = array(
    'info' => t('Book (inline) navigation'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  return $blocks;
}