node_hook

  1. drupal
    1. 4.7
    2. 5 node.module
    3. 6 node.module
    4. 7 node.module
Versions
4.7 – 6 node_hook(&$node, $hook)
7 node_hook($node, $hook)

Determine whether a node hook exists.

Parameters

&$node Either a node object, node array, or a string containing the node type.

$hook A string containing the name of the hook.

Return value

TRUE iff the $hook exists in the node type of $node.

▾ 7 functions call node_hook()

book_node_visitor_html_pre in modules/book.module
Generates printer-friendly HTML for a node. This function is a 'pre-node' visitor function for book_recurse().
hook_update_index in developer/hooks/core.php
Update Drupal's full-text index for this module.
node_feed in modules/node.module
A generic function for generating RSS feeds from a set of nodes.
node_invoke in modules/node.module
Invoke a node hook.
node_search in modules/node.module
Implementation of hook_search().
node_update_index in modules/node.module
Implementation of hook_update_index().
node_view in modules/node.module
Generate a display of the given node.

Code

modules/node.module, line 293

<?php
function node_hook(&$node, $hook) {
  return module_hook(node_get_base($node), $hook);
}
?>