node_page_view

modules/node/node.module, line 1782

Versions
5 – 6
node_page_view($node, $cid = NULL)
7
node_page_view($node)

Menu callback; view a single node.

Code

<?php
function node_page_view($node, $cid = NULL) {
  drupal_set_title(check_plain($node->title));
  return node_show($node, $cid);
}
?>
 
 

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.