You are here

function toc_node_node_post_render in TOC Node 7

Post render callback to act on the rendered HTML of the node.

1 string reference to 'toc_node_node_post_render'
toc_node_node_view_alter in ./toc_node.module
Implementation of hook_form_node_view_alter().

File

./toc_node.module, line 516

Code

function toc_node_node_post_render($content, $element) {
  $node = $element['#node'];
  $content = toc_node_generate($content, $node->toc_node_style, $node->toc_node_level, $node->toc_node_back_to_top_links);
  return $content;
}