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

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