function locale_config_batch_update_components

Builds a locale batch to refresh configuration.

Parameters

array $options: An array with options that can have the following elements:

  • 'finish_feedback': (optional) Whether or not to give feedback to the user when the batch is finished. Defaults to TRUE.

array $langcodes: (optional) Array of language codes. Defaults to all translatable languages.

array $components: (optional) Array of component lists indexed by type. If not present or it is an empty array, it will update all components.

Return value

array The batch definition.

3 calls to locale_config_batch_update_components()
install_update_configuration_translations in drupal/core/includes/install.core.inc
Creates configuration translations.
locale_form_language_admin_add_form_alter_submit in drupal/core/modules/locale/locale.module
Form submission handler for language_admin_add_form().
locale_system_update in drupal/core/modules/locale/locale.module
Imports translations when new modules or themes are installed.

File

drupal/core/modules/locale/locale.bulk.inc, line 762
Mass import-export and batch import functionality for Gettext .po files.

Code

function locale_config_batch_update_components(array $options, $langcodes = array(), $components = array()) {
  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
  if ($langcodes && ($names = \Drupal\locale\Locale::config()
    ->getComponentNames($components))) {
    return locale_config_batch_build($names, $langcodes, $options);
  }
}