drupal/modules/trigger/trigger.install

22 lines
395 B
Plaintext
Raw Normal View History

<?php
// $Id$
/**
* Implementation of hook_install().
*/
function trigger_install() {
// Create tables.
drupal_install_schema('trigger');
2007-07-02 14:41:37 +00:00
// Do initial synchronization of actions in code and the database.
actions_synchronize(actions_list());
}
/**
* Implementation of hook_uninstall().
*/
function trigger_uninstall() {
// Remove tables.
drupal_uninstall_schema('trigger');
}