You are here

function toc_filter_theme in TOC filter 7

Same name and namespace in other branches
  1. 6 toc_filter.module \toc_filter_theme()

Implements hook_theme().

File

./toc_filter.module, line 234
Converts header tags into a linked table of contents.

Code

function toc_filter_theme() {
  return array(
    'toc_filter' => array(
      'variables' => array(
        'format' => '',
        'content' => '',
      ),
    ),
    'toc_filter_back_to_top' => array(
      'variables' => array(
        'class' => '',
      ),
    ),
  );
}