You are here

function notifications_tags_install in Notifications 7

Implementation of hook_install().

File

notifications_tags/notifications_tags.install, line 6

Code

function notifications_tags_install() {

  // Set action for trigger: After saving a new term to the database
  module_load_install('notifications_content');
  notifications_content_install_trigger_action('taxonomy_term_insert', 'notifications_tags_term_create_action');
}