function Element::setTypedDataManager
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::setTypedDataManager()
- 10 core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::setTypedDataManager()
- 11.x core/lib/Drupal/Core/Config/Schema/Element.php \Drupal\Core\Config\Schema\Element::setTypedDataManager()
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
1 call to Element::setTypedDataManager()
- Element::getTypedDataManager in core/
lib/ Drupal/ Core/ Config/ Schema/ Element.php - Gets the typed configuration manager.
File
-
core/
lib/ Drupal/ Core/ Config/ Schema/ Element.php, line 52
Class
- Element
- Defines a generic configuration element.
Namespace
Drupal\Core\Config\SchemaCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.