function weather_uninstall in Weather 5.6
Same name and namespace in other branches
- 5 weather.install \weather_uninstall()
- 6.5 weather.install \weather_uninstall()
- 7.3 weather.install \weather_uninstall()
- 7 weather.install \weather_uninstall()
- 7.2 weather.install \weather_uninstall()
Implementation of hook_uninstall().
File
- ./
weather.install, line 128
Code
function weather_uninstall() {
variable_del('weather_fetch');
variable_del('weather_use_cron');
db_query('DROP TABLE {weather}');
db_query('DROP TABLE {weather_config}');
db_query('DROP TABLE {weather_icao}');
}