You are here

addressfield_staticmap.install in Address Field Static Map 7

Uninstall function for the address field static map module.

File

addressfield_staticmap.install
View source
<?php

/**
 * @file
 * Uninstall function for the address field static map module.
 */

/**
 * Implements hook_uninstall().
 *
 * Deletes variables set and used by Address Field Static Map.
 */
function addressfield_staticmap_uninstall() {
  $result = db_query("SELECT name from {variable} WHERE name like 'addressfield_staticmap_%'");
  foreach ($result as $record) {
    variable_del($record->name);
  }
}

Functions