function Element::getTypedDataManager

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::getTypedDataManager()
  2. 8.9.x core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::getTypedDataManager()
  3. 10 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

1 call to Element::getTypedDataManager()
Mapping::getDynamicallyValidKeys in core/lib/Drupal/Core/Config/Schema/Mapping.php
Gets all dynamically valid keys.

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.