import_role.install in Import 6
File
examples/import_role/import_role.installView source
<?php
/**
* Implementation of hook_install().
*
* Remove the variables, nodes and schema corresponding to the module.
*/
function import_role_install() {
define('IMPORT_ROLE_STAGED', FALSE);
}
/**
* Implementation of hook_uninstall().
*
* Remove the variables, nodes and schema corresponding to the module.
*/
function import_role_uninstall() {
variable_del('import_role_staged');
}
Functions
Name | Description |
---|---|
import_role_install | Implementation of hook_install(). |
import_role_uninstall | Implementation of hook_uninstall(). |