device_geolocation.install in Smart IP 6
Same filename and directory in other branches
Installation callback for Device Geolocation.
File
modules/device_geolocation/device_geolocation.installView source
<?php
// $Id$
/**
* @file
* Installation callback for Device Geolocation.
*/
/**
* Implements hook_uninstall().
*
* Removes all variables inserted into the
* database by this module.
*/
function device_geolocation_uninstall() {
variable_del('device_geolocation_ajax_check');
variable_del('device_geolocation_allowed_pages');
variable_del('device_geolocation_check_frequency');
}
/**
* Rename 'field-coordinates' menu to 'geolocate-user'.
*/
function device_geolocation_update_6000() {
cache_clear_all();
}
Functions
Name | Description |
---|---|
device_geolocation_uninstall | Implements hook_uninstall(). |
device_geolocation_update_6000 | Rename 'field-coordinates' menu to 'geolocate-user'. |