You are here

function locale_theme in Drupal 7

Same name and namespace in other branches
  1. 8 core/modules/locale/locale.module \locale_theme()
  2. 6 modules/locale/locale.module \locale_theme()
  3. 9 core/modules/locale/locale.module \locale_theme()
  4. 10 core/modules/locale/locale.module \locale_theme()

Implements hook_theme().

File

modules/locale/locale.module, line 453
Add language handling functionality and enables the translation of the user interface to languages other than English.

Code

function locale_theme() {
  return array(
    'locale_languages_overview_form' => array(
      'render element' => 'form',
    ),
    'locale_languages_configure_form' => array(
      'render element' => 'form',
    ),
    'locale_date_format_form' => array(
      'render element' => 'form',
    ),
  );
}