You are here

function weather_es_help in Weather_es 6.2

Same name and namespace in other branches
  1. 5 weather_es.module \weather_es_help()
  2. 6.3 weather_es.module \weather_es_help()
  3. 6 weather_es.module \weather_es_help()
  4. 7 weather_es.module \weather_es_help()

Implementation of hook_help().

File

./weather_es.module, line 41
Shows weather data of Spain (by AEMET)

Code

function weather_es_help($page, $arg) {
  switch ($page) {
    case 'admin/modules#description':
      return t('Spanish forecast by AEMET.');
    case 'admin/settings/weather_es':
      return t('<p>Here you can create a configuration with one or more locations or delete a location from your configuration.</p>');
  }
}