locale_theme

locale_theme()

Implements hook_theme().

File

core/modules/locale/locale.module, line 184
Enables the translation of the user interface to languages other than English.

Code

function locale_theme() {
  return array(
    'locale_translation_last_check' => array(
      'variables' => array('last' => NULL),
      'file' => 'locale.pages.inc',
    ),
    'locale_translation_update_info' => array(
      'variables' => array('updates' => array(), 'not_found' => array()),
      'file' => 'locale.pages.inc',
    ),
  );
}
doc_Drupal
2016-10-29 09:24:19
Comments
Leave a Comment

Please login to continue.