public 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\Schema
Code
public function getTypedDataManager() {
if (empty($this->typedDataManager)) {
$this->setTypedDataManager(\Drupal::service('config.typed'));
}
return $this->typedDataManager;
}
Please login to continue.