function weather_update_8 in Weather 6.5
Same name and namespace in other branches
- 5.6 weather.install \weather_update_8()
Implementation of hook_update_N().
Add Denpasar / Ngurah-Rai, Indonesia to ICAO codes
File
- ./
weather.install, line 346 - Database installation of weather module.
Code
function weather_update_8() {
$ret = array();
// Add Denpasar / Ngurah-Rai, Indonesia to ICAO codes
require_once drupal_get_path('module', 'weather') . '/weather_data.inc';
_weather_fill_icao_table();
return $ret;
}