function hook_node_type_insert

7.x node.api.php hook_node_type_insert($info)

Respond to node type creation.

This hook is invoked from node_type_save() after the node type is added to the database.

Parameters

$info: The node type object that is being created.

Related topics

2 functions implement hook_node_type_insert()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

comment_node_type_insert in drupal-7.x/modules/comment/comment.module
Implements hook_node_type_insert().
node_node_type_insert in drupal-7.x/modules/node/content_types.inc
Implements hook_node_type_insert().
1 invocation of hook_node_type_insert()
node_type_save in drupal-7.x/modules/node/node.module
Saves a node type to the database.

File

drupal-7.x/modules/node/node.api.php, line 996
Hooks provided by the Node module.

Code

function hook_node_type_insert($info) {
  drupal_set_message(t('You have just created a content type with a machine name %type.', array('%type' => $info->type)));
}