function geoip_language_help in GeoIP API 6
Same name and namespace in other branches
- 7 geoip_language/geoip_language.module \geoip_language_help()
Implementation of hook_help().
File
- geoip_language/
geoip_language.module, line 16 - Language negotiation based on GeoIP detection.
Code
function geoip_language_help($path, $arg) {
switch ($path) {
case 'admin/settings/language/geoip':
$help = t('<p>This page provides an overview of your site\'s IP detection and language negotiation settings. You may configure which language is chosen when each country is detected from the user\'s IP, using the form below. All detectable languages are listed in the <em>Detected country</em> drop-down list, and all installed languages are listed in t the <em>Language</em> drop-down list. If a country is detected but doesn\'t have an entry in this list, the default language will be used.</p>');
return $help;
}
}