drupal 7 hook_node_insert

The hook_node_insert function in Drupal 7 is a hook that is invoked after a node is inserted into the database. It allows modules to perform actions or modify data when a new node is created. Here is an example of how to implement hook_node_insert in Drupal 7:

function mymodule_node_insert($node) {
  // Perform actions or modify data here.
}

The $node parameter contains the newly created node object. You can access and modify its properties as needed.

Please let me know if you need further assistance!