You are here

notifications_tags.install in Notifications 7

File

notifications_tags/notifications_tags.install
View source
<?php

/**
 * Implementation of hook_install().
 */
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');
}

Functions

Namesort descending Description
notifications_tags_install Implementation of hook_install().