function wunderground_weather_current_fields in Wunderground weather 7
Returns an array of available fields for the current conditions block.
Return value
array An array of fields.
1 call to wunderground_weather_current_fields()
- wunderground_weather_block_configure in ./
wunderground_weather.module - Implements hook_block_configure().
File
- ./
wunderground_weather.module, line 800 - Wunderground weather module to display weather forecasts and current weather conditions in blocks.
Code
function wunderground_weather_current_fields() {
return array(
'feels_like' => t('Feels like'),
'temperature' => t('Temperature'),
'uv' => t('UV index'),
'visibility' => t('Visibility'),
'weather' => t('Weather description'),
'wind' => t('Wind speed'),
);
}