You are here

function relation_class_view in Subform 5

Implementation of hook_view, add our node specific information

Parameters

node object to display:

boolean is this a teaser or full node?:

boolean is this displaying on its own page:

File

./relation_class.module, line 177
CRUD, and manage relation_classes and relation_class lists

Code

function relation_class_view(&$node, $teaser = FALSE, $page = FALSE) {
  $node = node_prepare($node, $teaser);
  $node->body = theme('relation_class_view', $node);
}