Parent Directory
|
Revision Log
|
Revision Graph
#254398 Additional save-edit code fixes
| 1 | <?php |
| 2 | // $Id: clone.install,v 1.1 2008/05/03 21:50:58 pwolanin Exp $ |
| 3 | // $Name: $ |
| 4 | |
| 5 | /** |
| 6 | * Implementation of hook_uninstall. |
| 7 | */ |
| 8 | function clone_uninstall() { |
| 9 | |
| 10 | variable_del('clone_method'); |
| 11 | variable_del('clone_omitted'); |
| 12 | variable_del('clone_nodes_without_confirm'); |
| 13 | $types = node_get_types('names'); |
| 14 | foreach ($types as $type => $name) { |
| 15 | variable_del('clone_reset_'. $type); |
| 16 | } |
| 17 | } |
| 18 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |