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.
8 calls to node_is_page()
- bartik_preprocess_node in drupal-7.x/
themes/ bartik/ template.php - Override or insert variables into the node template.
- blog_view in drupal-7.x/
modules/ blog/ blog.module - Implements hook_view().
- book_node_view_link in drupal-7.x/
modules/ book/ book.module - Adds relevant book links to the node's links.
- comment_node_view in drupal-7.x/
modules/ comment/ comment.module - Implements hook_node_view().
- forum_node_view in drupal-7.x/
modules/ forum/ forum.module - Implements hook_node_view().
Archivo
- drupal-7.x/
modules/ node/ node.module, line 1489 - 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_is_page($node) {
$page_node = menu_get_object();
return (!empty($page_node) ? $page_node->nid == $node->nid : FALSE);
}