1 locale.module | locale_theme() |
Implements hook_theme().
File
- core/
modules/ locale/ locale.module, line 253 - Add language handling functionality and enables the translation of the user interface to languages other than English.
Code
function locale_theme() {
$base = array(
'file' => 'locale.theme.inc',
);
return array(
'language_negotiation_configure_form' => array(
'render element' => 'form',
) + $base,
'locale_date_format_form' => array(
'render element' => 'form',
) + $base,
);
}