You are here

function toc_filter_theme in TOC filter 6

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

Implementation of hook_theme().

File

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

Code

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