function export_uninstall in Node export 6
Same name and namespace in other branches
- 5.2 export.install \export_uninstall()
- 5 export.install \export_uninstall()
Implementation of hook_uninstall.
File
- ./
export.install, line 7
Code
function export_uninstall() {
variable_del('export_method');
variable_del('export_omitted');
variable_del('export_nodes_without_confirm');
$types = node_get_types('names');
foreach ($types as $type => $name) {
variable_del('export_reset_' . $type);
}
}