function locationmap_uninstall in Location Map 7.2
Same name and namespace in other branches
- 8.2 locationmap.install \locationmap_uninstall()
- 7 locationmap.install \locationmap_uninstall()
Implementation of hook_uninstall.
See also
File
- ./
locationmap.install, line 133 - Install, update and uninstall functions for the locationmap module.
Code
function locationmap_uninstall() {
variable_del('locationmap_address');
variable_del('locationmap_block_mapwidth');
variable_del('locationmap_block_mapheight');
variable_del('locationmap_block_text_top');
variable_del('locationmap_block_type');
variable_del('locationmap_body');
variable_del('locationmap_footer');
variable_del('locationmap_height');
variable_del('locationmap_info');
variable_del('locationmap_key');
variable_del('locationmap_lat');
variable_del('locationmap_lng');
variable_del('locationmap_popinfo');
variable_del('locationmap_scroll');
variable_del('locationmap_title');
variable_del('locationmap_type');
variable_del('locationmap_width');
variable_del('locationmap_zoom');
}