Same name and namespace in other branches
  1. 8.9.x core/modules/locale/locale.module \locale_translation_get_status()
  2. 9 core/modules/locale/locale.module \locale_translation_get_status()

Gets the current translation status.

@todo What is 'translation status'?

12 calls to locale_translation_get_status()
InstallerExistingConfigSyncDirectoryMultilingualTest::testConfigSync in core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigSyncDirectoryMultilingualTest.php
Confirms that the installation installed the configuration correctly.
LocaleConfigTranslationImportTest::testConfigTranslationImport in core/modules/locale/tests/src/Functional/LocaleConfigTranslationImportTest.php
Tests update changes configuration translations if enabled after language.
LocaleTranslationChangeProjectVersionTest::setUp in core/modules/locale/tests/src/Functional/LocaleTranslationChangeProjectVersionTest.php
LocaleTranslationChangeProjectVersionTest::testUpdateImportSourceRemote in core/modules/locale/tests/src/Functional/LocaleTranslationChangeProjectVersionTest.php
Tests update translations when project version changes.
LocaleUpdateInterfaceTest::testInterface in core/modules/locale/tests/src/Functional/LocaleUpdateInterfaceTest.php
Tests the user interfaces of the interface translation update system.

... See full list

File

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

Code

function locale_translation_get_status($projects = NULL, $langcodes = NULL) {
  $result = [];
  $status = \Drupal::keyValue('locale.translation_status')
    ->getAll();
  \Drupal::moduleHandler()
    ->loadInclude('locale', 'inc', 'locale.translation');
  $projects = $projects ? $projects : array_keys(locale_translation_get_projects());
  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());

  // Get the translation status of each project-language combination. If no
  // status was stored, a new translation source is created.
  foreach ($projects as $project) {
    foreach ($langcodes as $langcode) {
      if (isset($status[$project][$langcode])) {
        $result[$project][$langcode] = $status[$project][$langcode];
      }
      else {
        $sources = locale_translation_build_sources([
          $project,
        ], [
          $langcode,
        ]);
        if (isset($sources[$project][$langcode])) {
          $result[$project][$langcode] = $sources[$project][$langcode];
        }
      }
    }
  }
  return $result;
}