You are here

function theme_toc_node_move_to_top_link in TOC Node 7

Theming functions for 'Move to top' links.

1 theme call to theme_toc_node_move_to_top_link()
toc_node_generate in ./toc_node.module
Generate the TOC.

File

./toc_node.module, line 247

Code

function theme_toc_node_move_to_top_link($variables) {
  $content = $variables['content'];
  $path_alias = drupal_get_path_alias($_GET['q']);
  $link = '<div class="toc-top-links">';
  $link .= l(t('Move to top'), $path_alias, array(
    'fragment' => 'table-of-contents',
  ));
  $link .= '</div>';
  $output = str_ireplace('</h2>', '</h2>' . $link, $content);
  return $output;
}