W3cubDocs

/Drupal 8

public function Element::setTypedDataManager

public Element::setTypedDataManager(TypedDataManagerInterface $typed_data_manager)

Sets the typed config manager.

Overrides \Drupal\Core\TypedData\TypedDataTrait::setTypedDataManager() to ensure that only typed configuration manager can be used.

Parameters

\Drupal\Core\TypedData\TypedDataManagerInterface $typed_data_manager: The typed config manager. This must be an instance of \Drupal\Core\Config\TypedConfigManagerInterface. If it is not, then this method will error when assertions are enabled. We can not narrow the typehint as this will cause PHP errors.

Return value

$this

Overrides TypedDataTrait::setTypedDataManager

File

core/lib/Drupal/Core/Config/Schema/Element.php, line 52

Class

Element
Defines a generic configuration element.

Namespace

Drupal\Core\Config\Schema

Code

public function setTypedDataManager(TypedDataManagerInterface $typed_data_manager) {
  assert($typed_data_manager instanceof TypedConfigManagerInterface, '$typed_data_manager should be an instance of \Drupal\Core\Config\TypedConfigManagerInterface.');
  $this->typedDataManager = $typed_data_manager;
  return $this;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Schema!Element.php/function/Element::setTypedDataManager/8.1.x