| Versionen | |
|---|---|
| drupal6 – drupal7 | trigger_install() |
Implementation of hook_install().
modules/
<?php
function trigger_install() {
// Create tables.
drupal_install_schema('trigger');
// Do initial synchronization of actions in code and the database.
actions_synchronize(actions_list());
}
?>
Kommentare
Kommentar hinzufügen