You are here

function theme_link_node_format in link node 7

Same name and namespace in other branches
  1. 5 link_node.module \theme_link_node_format()
  2. 6 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_link_node_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 166
Implements the link_node module.

Code

function theme_link_node_format($variables) {
  return '<div class="attached_node">' . $variables['content'] . "</div>\n";
}