function Element::getTypedDataManager
Same name in other branches
- 9 core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::getTypedDataManager()
- 10 core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::getTypedDataManager()
- 11.x core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::getTypedDataManager()
Gets the typed configuration manager.
Overrides \Drupal\Core\TypedData\TypedDataTrait::getTypedDataManager() to ensure the typed configuration manager is returned.
Return value
\Drupal\Core\Config\TypedConfigManagerInterface The typed configuration manager.
Overrides TypedDataTrait::getTypedDataManager
File
-
core/
lib/ Drupal/ Core/ Config/ Schema/ Element.php, line 30
Class
- Element
- Defines a generic configuration element.
Namespace
Drupal\Core\Config\SchemaCode
public function getTypedDataManager() {
if (empty($this->typedDataManager)) {
$this->setTypedDataManager(\Drupal::service('config.typed'));
}
return $this->typedDataManager;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.