node_prepare

Versions
4.6 – 6
node_prepare($node, $teaser = FALSE)

Apply filters to a node in preparation for theming.

▾ 12 functions call node_prepare()

blog_view in modules/blog.module
Implementation of hook_view().
book_content in modules/book.module
Returns the content of a given node. If $teaser if true, returns the teaser rather than full content. Displays the most recently approved revision of a node (if any) unless we have to display this page in the context of the moderation queue.
book_view in modules/book.module
Implementation of hook_view().
forum_view in modules/forum.module
Implementation of hook_view().
hook_update_index in developer/hooks/core.php
Update Drupal's full-text index for this module.
hook_view in developer/hooks/node.php
Display a node.
multipage_form_example_view in developer/examples/multipage_form_example.module
Implementation of hook_view().
node_example_view in developer/examples/node_example.module
Implementation of hook_view().
node_feed in modules/node.module
A generic function for generating RSS feeds from a set of nodes.
node_search in modules/node.module
Implementation of hook_search().
node_update_index in modules/node.module
Implementation of hook_update_index().
node_view in modules/node.module
Generate a display of the given node.

Code

modules/node.module, line 568

<?php
function node_prepare($node, $teaser = FALSE) {
  $node->readmore = (strlen($node->teaser) < strlen($node->body));
  if ($teaser == FALSE) {
    $node->body = check_markup($node->body, $node->format, FALSE);
  }
  else {
    $node->teaser = check_markup($node->teaser, $node->format, FALSE);
  }
  return $node;
}
?>
Login or register to post comments
 
 

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.