getlocations_cloudmade.install in Get Locations 7
Same filename and directory in other branches
getlocations_cloudmade.install @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
getlocations_cloudmade module installation.
File
modules/getlocations_cloudmade/getlocations_cloudmade.installView 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
Name | Description |
---|---|
getlocations_cloudmade_uninstall | Implements hook_uninstall(). |