You are here

function toc_node_block_info in TOC Node 7

Implements hook_block_info().

File

./toc_node.module, line 262

Code

function toc_node_block_info() {
  $return = array();
  $return['toc_node'] = array(
    'info' => t('Table Of Contents'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  return $return;
}