updated some more modules

This commit is contained in:
Bachir Soussi Chiadmi
2017-01-22 19:41:28 +01:00
parent 8416e3eea1
commit a0fadb0757
271 changed files with 11309 additions and 2135 deletions
@@ -0,0 +1,21 @@
<?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_use_node_type_name');
variable_del('clone_menu_links');
$types = node_type_get_names();
foreach ($types as $type => $name) {
variable_del('clone_reset_' . $type);
}
}