function getlocations_leaflet_uninstall in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_leaflet/getlocations_leaflet.install \getlocations_leaflet_uninstall()
Implements hook_uninstall().
File
- modules/
getlocations_leaflet/ getlocations_leaflet.install, line 55 - getlocations_leaflet.install @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_leaflet_uninstall() {
$query = db_delete('variable')
->condition('name', 'getlocations_leaflet_%', 'LIKE')
->execute();
}