function theme_link_node_format in link node 6
Same name and namespace in other branches
- 5 link_node.module \theme_link_node_format()
- 7 link_node.module \theme_link_node_format()
Puts a box around the attached_node's content
1 theme call to theme_link_node_format()
- link_node_filter_process in ./
link_node.module - Actually execute filter on given text. Parse text for all meta tags. Lookup each specified node. Parse all parameters specified in each meta tag and apply them to the corresponding node. Replace meta tag with themed thumbnail view of the referrent node.
File
- ./
link_node.module, line 185
Code
function theme_link_node_format($content) {
return '<div class="link_node">' . $content . "</div>\n";
}