function yr_verdata_help in Yr Weatherdata 6.2
Same name and namespace in other branches
- 7 yr_verdata.module \yr_verdata_help()
Implementation of hook_help().
File
- ./
yr_verdata.module, line 11 - yr_verdata.module This file contains the code for getting the forecast from yr.no and displaying it on a Drupal site.
Code
function yr_verdata_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/settings/yr_verdata':
$output .= '<p>' . t('Here, you can configure the way weather forecast is shown to users on your site. To add locations, go to !addloc. To delete locations, go to !list.', array(
'!addloc' => l('forecast/add', 'forecast/add'),
'!list' => l('forecast', 'forecast'),
)) . '</p>';
break;
}
return $output;
}