public function ConfigMapperManager::hasTranslatable in Drupal 10
Same name and namespace in other branches
- 8 core/modules/config_translation/src/ConfigMapperManager.php \Drupal\config_translation\ConfigMapperManager::hasTranslatable()
- 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_translationCode
public function hasTranslatable($name) {
return $this
->findTranslatable($this->typedConfigManager
->get($name));
}