multipage_form_example_view

Definition

multipage_form_example_view(&$node, $teaser = FALSE, $page = FALSE)
developer/examples/multipage_form_example.module, line 333

Description

Implementation of hook_view().

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

Code

<?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;
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.