16 lines
352 B
Text
16 lines
352 B
Text
<?php
|
|
|
|
/**
|
|
* Implementation of hook_uninstall.
|
|
*/
|
|
function clone_uninstall() {
|
|
variable_del('clone_method');
|
|
variable_del('clone_omitted');
|
|
variable_del('clone_nodes_without_confirm');
|
|
variable_del('clone_menu_links');
|
|
$types = node_get_types('names');
|
|
foreach ($types as $type => $name) {
|
|
variable_del('clone_reset_'. $type);
|
|
}
|
|
}
|
|
|