You are here

function weather_install in Weather 6.5

Same name and namespace in other branches
  1. 8 weather.install \weather_install()
  2. 5.6 weather.install \weather_install()
  3. 5 weather.install \weather_install()
  4. 7.3 weather.install \weather_install()
  5. 7 weather.install \weather_install()
  6. 7.2 weather.install \weather_install()
  7. 2.0.x weather.install \weather_install()

Implementation of hook_install().

File

./weather.install, line 35
Database installation of weather module.

Code

function weather_install() {

  // Install the database schema
  drupal_install_schema('weather');

  // Insert ICAO data into table
  require_once drupal_get_path('module', 'weather') . '/weather_data.inc';
  _weather_fill_icao_table();
}