You are here

getlocations_smartip.install in Get Locations 7

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

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

getlocations_smartip module installation.

File

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

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

/**
 * Implements hook_uninstall().
 */
function getlocations_smartip_uninstall() {
  variable_del('getlocations_smartip_defaults');
  variable_del('getlocations_smartip_paths');
}

/**
 * Implements hook_enable().
 */
function getlocations_smartip_enable() {
  drupal_set_message(st('Thank you for installing Getlocations smartip. To set it up please visit the <a href="@url">configuration page</a>.', array(
    '@url' => url('admin/config/services/getlocations/smartip'),
  )), 'status');
}