You are here

function theme_tableofcontents_toc_text in Table of Contents 6.3

Same name and namespace in other branches
  1. 7.2 tableofcontents.themes.inc \theme_tableofcontents_toc_text()
  2. 7 tableofcontents.pages.inc \theme_tableofcontents_toc_text()

Basic formatting of the text generated by the theme_tableofcontents_toc() function. This is the table of contents in the form of a string.

Parameters

$text: The text to format

Return value

The resulting text

1 theme call to theme_tableofcontents_toc_text()
theme_tableofcontents_toc in ./tableofcontents.pages.inc
Theme the output of a table of contents.

File

./tableofcontents.pages.inc, line 1041
Applies the filter functions.

Code

function theme_tableofcontents_toc_text($text) {
  return $text;
}