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