node_example_view

5 node_example.module node_example_view($node, $teaser = FALSE, $page = FALSE)
6 node_example.module node_example_view($node, $teaser = FALSE, $page = FALSE)

Implementation of hook_view().

This is a typical implementation that simply runs the node text through the output filters.

File

developer/examples/node_example.module, line 222
This is an example outlining how a module can be used to define a new node type.

Code

function node_example_view($node, $teaser = FALSE, $page = FALSE) {
  $node = node_prepare($node, $teaser);
  $node->content['myfield'] = array(
    '#value' => theme('node_example_order_info', $node), 
    '#weight' => 1,
  );

  return $node;
}
Login or register to post comments