function trigger_install
Same name and namespace in other branches
- 7.x drupal-7.x/modules/trigger/trigger.install \trigger_install()
Implementation of hook_install().
Archivo
- drupal-6.x/
modules/ trigger/ trigger.install, line 6
Código
function trigger_install() {
// Create tables.
drupal_install_schema('trigger');
// Do initial synchronization of actions in code and the database.
actions_synchronize(actions_list());
}