function ip2country_help in IP-based Determination of a Visitor's Country 6
Same name and namespace in other branches
- 8 ip2country.module \ip2country_help()
- 7 ip2country.module \ip2country_help()
Implements hook_help().
File
- ./
ip2country.module, line 39 - Determination of user's Country based on IP.
Code
function ip2country_help($path, $arg) {
switch ($path) {
case 'admin/help#ip2country':
return t('Determines the Country where the user is located based on the IP address used.');
break;
case 'admin/settings/ip2country':
return t('Configuration settings for the ip2country module.');
break;
}
}