You are here

function import_user_uninstall in Import 6

Implementation of hook_uninstall().

Remove the variables, nodes and schema corresponding to the module.

File

examples/import_user/import_user.install, line 32
The install file for the import_user example. This module should not be used on a production installation of Drupal ... it is for illustration purposes only. The install hook removes all traces of what was created by this module and could…

Code

function import_user_uninstall() {
  drupal_uninstall_schema('import_user');
  _import_user_delete_data();
}