1 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

File

core/modules/node/node.api.php, line 923
Hooks provided by the Node module.

Code

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