/[drupal]/contributions/modules/node_clone/clone.install
ViewVC logotype

Contents of /contributions/modules/node_clone/clone.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Sun May 4 00:23:21 2008 UTC (18 months, 3 weeks ago) by pwolanin
Branch: MAIN
CVS Tags: DRUPAL-5--2-3, DRUPAL-6--1-0, HEAD
Branch point for: DRUPAL-6--1, DRUPAL-7--1
Changes since 1.1: +2 -1 lines
File MIME type: text/x-php
#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