You are here

getlocations_mapbox.install in Get Locations 7

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

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

getlocations_mapbox module installation.

File

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

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

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

Functions