Community Documentation

node_page_view

5 node.module node_page_view($node, $cid = NULL)
6 node.module node_page_view($node, $cid = NULL)
7 node.module node_page_view($node)
8 node.module node_page_view($node)

Menu callback; view a single node.

File

modules/node/node.module, line 1808
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

<?php
function node_page_view($node, $cid = NULL) {
  drupal_set_title(check_plain($node->title));
  return node_show($node, $cid);
}
?>
Login or register to post comments