function location_views_help in Location 5
Implementation of hook_help().
File
- contrib/
location_views/ location_views.module, line 13 - Views-enables the location module.
Code
function location_views_help($section) {
switch ($section) {
case 'admin/help#location_views':
return t('The Location Views module makes all the location fields available to the Views module, ' . 'and creates a default location view using all the location fields. If the usernode module is installed user location information is Views-enabled, too. ');
}
}