You are here

function notifications_tags_term_create_action in Notifications 7

Send content notifications

2 string references to 'notifications_tags_term_create_action'
notifications_tags_install in notifications_tags/notifications_tags.install
Implementation of hook_install().
notifications_tags_notifications in notifications_tags/notifications_tags.module
Implementation of hook_notifications().

File

notifications_tags/notifications_tags.module, line 288
Subscriptions to taxonomy terms

Code

function notifications_tags_term_create_action($object, $context = array()) {
  notifications_event('taxonomy_term-create')
    ->add_object('taxonomy_term', $object)
    ->trigger();
}