You are here

getlocations_cloudmade.install in Get Locations 7

Same filename and directory in other branches
  1. 7.2 modules/getlocations_cloudmade/getlocations_cloudmade.install

getlocations_cloudmade.install @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

getlocations_cloudmade module installation.

File

modules/getlocations_cloudmade/getlocations_cloudmade.install
View source
<?php

/**
 * @file
 * getlocations_cloudmade.install
 * @author Bob Hutchinson http://drupal.org/user/52366
 * @copyright GNU GPL
 *
 * getlocations_cloudmade module installation.
 *
 */

/**
 * Implements hook_uninstall().
 *
 */
function getlocations_cloudmade_uninstall() {
  $query = db_delete('variable')
    ->condition('name', 'getlocations_leaflet_cloudmade', 'LIKE')
    ->execute();
}

Functions