You are here

function import_node_uninstall in Import 6

Implementation of hook_uninstall().

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

File

examples/import_node/import_node.install, line 33
The install file for the import_node 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_node_uninstall() {
  drupal_uninstall_schema('import_node');
  _import_node_delete_data();
}