function regions_api_help in Country codes API 6
Implementation of hook_help().
File
- contrib/
regions_api/ regions_api.module, line 12 - Regions API provides an API for accessing country region (province/state) data.
Code
function regions_api_help($path, $arg) {
switch ($path) {
case 'admin/help#regions_api':
return '<p>' . t('Help Section Coming Soon.') . '</p>';
}
}