function locale_system_update in Drupal 7
Same name and namespace in other branches
- 8 core/modules/locale/locale.module \locale_system_update()
- 6 modules/locale/locale.module \locale_system_update()
- 9 core/modules/locale/locale.module \locale_system_update()
Imports translations when new modules or themes are installed.
This function will either import translation for the component change right away, or start a batch if more files need to be imported.
Parameters
$components: An array of component (theme and/or module) names to import translations for.
2 calls to locale_system_update()
- locale_modules_installed in modules/
locale/ locale.module - Implements hook_modules_installed().
- locale_themes_enabled in modules/
locale/ locale.module - Implements hook_themes_enabled().
File
- modules/
locale/ locale.module, line 886 - Add language handling functionality and enables the translation of the user interface to languages other than English.
Code
function locale_system_update($components) {
include_once DRUPAL_ROOT . '/includes/locale.inc';
if ($batch = locale_batch_by_component($components)) {
batch_set($batch);
}
}