function locale_test_locale

Implements hook_locale().

File

drupal/modules/locale/tests/locale_test.module, line 11
Mock module for locale layer tests.

Code

function locale_test_locale($op = 'groups') {
  switch ($op) {
    case 'groups':
      return array(
        'custom' => t('Custom'),
      );
  }
}