You are here

autoassignrole.install in Auto Assign Role 5.2

File

autoassignrole.install
View source
<?php

/**
 * Implementation of hook_uninstall().
 */
function autoassignrole_uninstall() {
  $sql = "SELECT name FROM {variable} WHERE name LIKE 'AUTOASSIGNROLE_%%'";
  $vars = db_query($sql);
  while ($var = db_fetch_object($vars)) {
    variable_del($var->name);
  }
}

Functions

Namesort descending Description
autoassignrole_uninstall Implementation of hook_uninstall().