node.php
Version
1.14.2.1 (checked in on 2007/01/06 at 09:23:36 by fgm)
Description
These hooks are defined by node modules, modules that define a new kind of node.
If you don't need to make a new node type but rather extend the existing ones, you should instead investigate using hook_nodeapi().
Node hooks are typically called by node.module using node_invoke().
Functions
| Name | Description |
|---|---|
| hook_access | Define access restrictions. |
| hook_delete | Respond to node deletion. |
| hook_form | Display a node editing form. |
| hook_insert | Respond to node insertion. |
| hook_load | Load node-type-specific information. |
| hook_node_name | Define the human-readable name of a node type. |
| hook_node_types | Define multiple node types. |
| hook_update | Respond to node updating. |
| hook_validate | Verify a node editing form. |
| hook_view | Display a node. |
