This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/node_clone/clone.install

20 lines
425 B
Text

<?php
/**
* @file
* Install & uninstall functions for Node_Clone module.
*/
/**
* 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);
}
}