function hook_modr8_insert in modr8 7
React to a content being added to content moderation queue.
Parameters
$node: The node object that was being added.
See also
1 invocation of hook_modr8_insert()
- modr8_node_insert in ./
modr8.module - Implements hook_node_insert().
File
- ./
modr8.api.php, line 59 - Defines API hooks for the Modr8 module.
Code
function hook_modr8_insert($node) {
drupal_set_message(t('Content has been added to content moderation queue.'));
}