function domain_locale_help in Domain Locale 6
Same name and namespace in other branches
- 7 domain_locale.module \domain_locale_help()
Implementation of hook_help().
File
- ./
domain_locale.module, line 12 - domain_locale Domain Locale: manage languages Provides domain specific language settings
Code
function domain_locale_help($path, $arg) {
switch ($path) {
case 'admin/help#domain_locale':
$output = t('Domain Access Locale');
return $output;
}
}