drupal/modules/actions/actions.install

22 lines
395 B
Plaintext

<?php
// $Id$
/**
* Implementation of hook_install().
*/
function actions_install() {
// Create tables.
drupal_install_schema('actions');
// Do initial synchronization of actions in code and the database.
actions_synchronize(actions_list());
}
/**
* Implementation of hook_uninstall().
*/
function actions_uninstall() {
// Remove tables.
drupal_uninstall_schema('actions');
}