Same name and namespace in other branches
  1. 7.x modules/locale/locale.api.php \hook_locale()

Allows modules to define their own text groups that can be translated.

Parameters

$op: Type of operation. Currently, only supports 'groups'.

Related topics

2 functions implement hook_locale()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

install_select_locale in ./install.php
Allow admin to select which locale to use for the current profile.
locale_locale in modules/locale/locale.module
Implementation of hook_locale().
9 invocations of hook_locale()
locale_translate_export_pot_form in includes/locale.inc
Translation template export form.
locale_translate_export_po_form in includes/locale.inc
Form to export PO files for the languages provided.
locale_translate_import_form in includes/locale.inc
User interface for the translation import screen.
locale_translate_overview_screen in includes/locale.inc
Overview screen for translations.
locale_translate_seek_form in includes/locale.inc
User interface for the string search screen.

... See full list

File

developer/hooks/core.php, line 2730
These are the hooks that are invoked by the Drupal core.

Code

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