You are here

function domain_locale_help in Domain Locale 7

Same name and namespace in other branches
  1. 6 domain_locale.module \domain_locale_help()

Implements hook_help().

File

./domain_locale.module, line 223
Provides domain specific language settings.

Code

function domain_locale_help($path, $arg) {
  switch ($path) {
    case 'admin/help#domain_locale':
      $ret = t('Domain Locale');
      break;
    default:
      $ret = NULL;
  }
  return $ret;
}