function tableofcontents_node_load in Table of Contents 7
Implementation of hook_node_load
File
- ./
tableofcontents.module, line 213 - This is a filter module to generate a collapsible jquery enabled mediawiki style table of contents based on <h[1-6]> tags. Transforms header tags into named anchors.
Code
function tableofcontents_node_load($nodes) {
foreach ($nodes as $node) {
_tableofcontents_load($node);
}
}