function wunderground_weather_permission in Wunderground weather 7
Implements hook_permission().
File
- ./
wunderground_weather.module, line 23 - Wunderground weather module to display weather forecasts and current weather conditions in blocks.
Code
function wunderground_weather_permission() {
return array(
'administer wunderground weather' => array(
'title' => t('Administer Wunderground Weather'),
'description' => t('Perform administration tasks for the Wunderground Weather module.'),
),
);
}