function link_node_theme in link node 7
Same name and namespace in other branches
- 6 link_node.module \link_node_theme()
Implementation of hook_theme().
File
- ./
link_node.module, line 32 - Implements the link_node module.
Code
function link_node_theme() {
return array(
'link_node_thumbnail' => array(
'variables' => array(
'node' => NULL,
),
),
'link_node_format' => array(
'variables' => array(
'content' => NULL,
),
),
);
}