You are here

function trigger_install in Drupal 6

Same name and namespace in other branches
  1. 7 modules/trigger/trigger.install \trigger_install()

Implementation of hook_install().

File

modules/trigger/trigger.install, line 6

Code

function trigger_install() {

  // Create tables.
  drupal_install_schema('trigger');

  // Do initial synchronization of actions in code and the database.
  actions_synchronize(actions_list());
}