function notifications_content_trigger_info in Notifications 7
Implements hook_trigger_info().
File
- notifications_content/
notifications_content.module, line 104 - Subscriptions to content events
Code
function notifications_content_trigger_info() {
return array(
'node' => array(
'node_publish' => array(
'label' => t('After content is published, either created public or updated status'),
),
),
);
}