You are here

function export_uninstall in Node export 5

Same name and namespace in other branches
  1. 5.2 export.install \export_uninstall()
  2. 6 export.install \export_uninstall()

Implementation of hook_uninstall.

File

./export.install, line 6

Code

function export_uninstall() {
  variable_del('export_method');
  variable_del('export_omitted');
  $types = node_get_types('names');
  foreach ($types as $type => $name) {
    variable_del('export_reset_' . $type);
  }
}