public ConfigMapperManager::hasTranslatable($name)
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
1 2 3 | public function hasTranslatable( $name ) { return $this ->findTranslatable( $this ->typedConfigManager->get( $name )); } |
Please login to continue.