/[drupal]/contributions/modules/singlesignon/singlesignon.install
ViewVC logotype

Contents of /contributions/modules/singlesignon/singlesignon.install

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


Revision 1.2 - (show annotations) (download) (as text)
Mon May 5 04:15:43 2008 UTC (18 months, 3 weeks ago) by wayland76
Branch: MAIN
CVS Tags: DRUPAL-6--1-2, DRUPAL-6--1-3, HEAD
Branch point for: DRUPAL-6--1
Changes since 1.1: +2 -1 lines
File MIME type: text/x-php
Updated HEAD to be the same as 5.x-1.1, so that we can start the 6.x development
1 <?php
2 // $Id: singlesignon.install,v 1.1.2.3 2008/05/02 03:19:25 wayland76 Exp $
3
4
5 /**
6 * Implementation of hook_uninstall().
7 */
8 function singlesignon_uninstall() {
9 $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'singlesignon\_%'");
10 while ($variable = db_fetch_object($settings)) {
11 variable_del($variable->name);
12 }
13 }
14

  ViewVC Help
Powered by ViewVC 1.1.2