Act on a node object about to be shown on the add/edit form.
This is a node-type-specific hook, which is invoked only for the node type being affected. See Node API hooks for more information.
Use hook_node_prepare() to respond to node preparation of all node types.
This hook is invoked from node_object_prepare() before the general hook_node_prepare() is invoked.
$node: The node that is about to be shown on the add/edit form.
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
function hook_prepare($node) {
if (!isset($node->mymodule_value)) {
$node->mymodule_value = 'foo';
}
}