You are here

public function ConfigNamesMapper::hasTranslation in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::hasTranslation()

Checks whether there is already a translation for this mapper.

Parameters

\Drupal\Core\Language\LanguageInterface $language: A language object.

Return value

bool TRUE if any of the configuration elements have a translation in the given language, FALSE otherwise.

Overrides ConfigMapperInterface::hasTranslation

File

core/modules/config_translation/src/ConfigNamesMapper.php, line 467

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function hasTranslation(LanguageInterface $language) {
  foreach ($this
    ->getConfigNames() as $name) {
    if ($this->localeConfigManager
      ->hasTranslation($name, $language
      ->getId())) {
      return TRUE;
    }
  }
  return FALSE;
}