export.install in Node export 6
Same filename and directory in other branches
File
export.installView source
<?php
// $Name$
/**
* Implementation of hook_uninstall.
*/
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);
}
}
Functions
Name | Description |
---|---|
export_uninstall | Implementation of hook_uninstall. |