function theme_tableofcontents_toc_text in Table of Contents 7
Same name and namespace in other branches
- 6.3 tableofcontents.pages.inc \theme_tableofcontents_toc_text()
- 7.2 tableofcontents.themes.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 992 - Applies the filter functions.
Code
function theme_tableofcontents_toc_text($variables) {
return $variables[0];
}