function node_is_page

Returns whether the current page is the full page view of the passed-in node.

Parameters

$node: A node object.

Return value

The ID of the node if this is a full page view, otherwise FALSE.

9 calls to node_is_page()
bartik_preprocess_node in drupal/themes/bartik/template.php
Override or insert variables into the node template.
blog_view in drupal/modules/blog/blog.module
Implements hook_view().
book_node_view_link in drupal/modules/book/book.module
Adds relevant book links to the node's links.
comment_node_view in drupal/modules/comment/comment.module
Implements hook_node_view().
forum_node_view in drupal/modules/forum/forum.module
Implements hook_node_view().

... See full list

File

drupal/modules/node/node.module, line 1483
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

function node_is_page($node) {
  $page_node = menu_get_object();
  return !empty($page_node) ? $page_node->nid == $node->nid : FALSE;
}