function locale_theme in Drupal 6
Same name and namespace in other branches
- 8 core/modules/locale/locale.module \locale_theme()
- 7 modules/locale/locale.module \locale_theme()
- 9 core/modules/locale/locale.module \locale_theme()
- 10 core/modules/locale/locale.module \locale_theme()
Implementation of hook_theme()
File
- modules/
locale/ locale.module, line 295 - 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(
'arguments' => array(
'form' => array(),
),
),
);
}