You are here

function locale_config_batch_refresh_name in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/locale.bulk.inc \locale_config_batch_refresh_name()

Implements callback_batch_operation().

Performs configuration translation refresh.

Parameters

array $names: An array of names of configuration objects to update.

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

array|\ArrayAccess $context: Contains a list of files imported.

See also

locale_config_batch_build()

1 string reference to 'locale_config_batch_refresh_name'
locale_config_batch_build in core/modules/locale/locale.bulk.inc
Creates a locale batch to refresh specific configuration.

File

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

Code

function locale_config_batch_refresh_name(array $names, array $langcodes, &$context) {
  if (!isset($context['result']['stats']['config'])) {
    $context['result']['stats']['config'] = 0;
  }
  $context['result']['stats']['config'] += Locale::config()
    ->updateConfigTranslations($names, $langcodes);
  foreach ($names as $name) {
    $context['result']['names'][] = $name;
  }
  $context['result']['langcodes'] = $langcodes;
  $context['finished'] = 1;
}