You are here

import_role.install in Import 6

File

examples/import_role/import_role.install
View 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

Namesort descending Description
import_role_install Implementation of hook_install().
import_role_uninstall Implementation of hook_uninstall().