You are here

public function ConfigMapperManager::hasTranslatable in Drupal 8

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

Returns TRUE if the configuration data has translatable items.

Parameters

string $name: Configuration key.

Return value

bool A boolean indicating if the configuration data has translatable items.

Overrides ConfigMapperManagerInterface::hasTranslatable

File

core/modules/config_translation/src/ConfigMapperManager.php, line 168

Class

ConfigMapperManager
Manages plugins for configuration translation mappers.

Namespace

Drupal\config_translation

Code

public function hasTranslatable($name) {
  return $this
    ->findTranslatable($this->typedConfigManager
    ->get($name));
}