function node_page_view
Same name and namespace in other branches
- 7.x drupal-7.x/modules/node/node.module \node_page_view()
Menu callback; view a single node.
1 string reference to 'node_page_view'
- node_menu in drupal-6.x/
modules/ node/ node.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
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.
Código
function node_page_view($node, $cid = NULL) {
drupal_set_title(check_plain($node->title));
return node_show($node, $cid);
}