function theme_tableofcontents_number_text in Table of Contents 7.2
Same name and namespace in other branches
- 6.3 tableofcontents.pages.inc \theme_tableofcontents_number_text()
- 7 tableofcontents.pages.inc \theme_tableofcontents_number_text()
Basic formatting of the text generated by the theme_tableofcontents_number() function. This is the number in the form of a string.
Parameters
$text The text to format:
Return value
The resulting text
1 theme call to theme_tableofcontents_number_text()
- theme_tableofcontents_number in ./
tableofcontents.themes.inc - Theme the output of a multi-level number.
File
- ./
tableofcontents.themes.inc, line 287 - Table of Contents - Versatile system for generating Tables of Contents for fields - themes.
Code
function theme_tableofcontents_number_text($variables) {
return $variables['text'];
}