function locale_theme
Same name and namespace in other branches
- 7.x drupal-7.x/modules/locale/locale.module \locale_theme()
Implementation of hook_theme()
Archivo
- drupal-6.x/
modules/ locale/ locale.module, line 295 - Add language handling functionality and enables the translation of the user interface to languages other than English.
Código
function locale_theme() {
return array(
'locale_languages_overview_form' => array(
'arguments' => array('form' => array()),
),
);
}