function locale_test_locale
Implements hook_locale().
Archivo
- drupal-7.x/
modules/ locale/ tests/ locale_test.module, line 11 - Mock module for locale layer tests.
Código
function locale_test_locale($op = 'groups') {
switch ($op) {
case 'groups':
return array('custom' => t('Custom'));
}
}