function toc_node_theme in TOC Node 7
Implementation of hook_theme().
File
- ./
toc_node.module, line 228
Code
function toc_node_theme() {
$theme = array(
'toc_node_move_to_top_link' => array(
'variables' => array(
'content' => NULL,
),
),
'toc_node_links' => array(
'variables' => array(
'links' => NULL,
),
'template' => 'templates/toc_node_links',
),
);
return $theme;
}