function hook_node_type_update
Respond to node type updates.
This hook is invoked from node_type_save() after the node type is updated in the database.
Parameters
$info: The node type object that is being updated.
Related topics
3 functions implement hook_node_type_update()
Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.
- book_node_type_update in modules/
book/ book.module - Implements hook_node_type_update().
- comment_node_type_update in modules/
comment/ comment.module - Implements hook_node_type_update().
- node_node_type_update in modules/
node/ content_types.inc - Implements hook_node_type_update().
1 invocation of hook_node_type_update()
- node_type_save in modules/
node/ node.module - Saves a node type to the database.
File
-
modules/
node/ node.api.php, line 1016
Code
function hook_node_type_update($info) {
if (!empty($info->old_type) && $info->old_type != $info->type) {
$setting = variable_get('comment_' . $info->old_type, COMMENT_NODE_OPEN);
variable_del('comment_' . $info->old_type);
variable_set('comment_' . $info->type, $setting);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.