| 5 install.php | hook_install() |
| 6 install.php | hook_install() |
| 7 system.api.php | hook_install() |
| 8 system.api.php | hook_install() |
Perform setup tasks when the module is installed.
If the module implements hook_schema(), the database tables will be created before this hook is fired.
Implementations of this hook are by convention declared in the module's .install file. The implementation can rely on the .module file being loaded. The hook will only be called the first time a module is enabled or after it is re-enabled after being uninstalled. The module's schema version will be set to the module's greatest numbered update hook. Because of this, any time a hook_update_N() is added to the module, this function needs to be updated to reflect the current version of the database schema.
See the Schema API documentation at http://drupal.org/node/146843 for details on hook_schema and how database tables are defined.
Note that since this function is called from a full bootstrap, all functions (including those in modules enabled by the current page request) are available when this hook is called. Use cases could be displaying a user message, or calling a module function necessary for initial setup, etc.
Please be sure that anything added or modified in this function that can be removed during uninstall should be removed with hook_uninstall().
See also
Related topics
25 functions implement hook_install()
3 invocations of hook_install()
File
- modules/
system/ system.api.php, line 3213 - Hooks provided by Drupal core and the System module.
Code
function hook_install() {
// Populate the default {node_access} record.
db_insert('node_access')
->fields(array(
'nid' => 0,
'gid' => 0,
'realm' => 'all',
'grant_view' => 1,
'grant_update' => 0,
'grant_delete' => 0,
))
->execute();
}
Login or register to post comments
Comments
Availability of module's functions in its hook_install()
"Note that since this function is called from a full bootstrap, all functions (including those in modules enabled by the current page request) are available when this hook is called." It sounds like it, from that statement, that functions from the module you are enabling are available. We should maybe clarify that a bit more because in the drupal 6 version of this hook, they are not and you will get an undefined function error.
http://api.drupal.org/api/drupal/developer--hooks--install.php/function/...
Assumed knowledge
Note that this function needs to live in a .install file, as .module files will not be loaded during install/uninstall actions.