You are here

export.install in Node export 5

Same filename and directory in other branches
  1. 5.2 export.install
  2. 6 export.install

File

export.install
View source
<?php

/**
 * Implementation of hook_uninstall.
 */
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);
  }
}

Functions

Namesort descending Description
export_uninstall Implementation of hook_uninstall.