function uc_ip2country_help in IP-based Determination of a Visitor's Country 5
Implementation of hook_help().
File
- ./
uc_ip2country.module, line 43 - Determination of user's Country based on IP
Code
function uc_ip2country_help($section = 'admin/help#uc_ip2country') {
switch ($section) {
case 'admin/help#uc_ip2country':
return t('Detects Country of user based on IP address.');
break;
case 'admin/settings/ip2country':
return t('Configuration settings for the ip2country module.');
break;
}
}