multipage_form_example_view

  1. drupal
    1. 4.7
    2. 5
Versions
4.7 – 5 multipage_form_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.

Code

developer/examples/multipage_form_example.module, line 334

<?php
function multipage_form_example_view(&$node, $teaser = FALSE, $page = FALSE) {
  $node = node_prepare($node, $teaser);
  $favorites = theme('multipage_form_example', $node);
  $node->body .= $favorites;
  $node->teaser .= $favorites;
}
?>