final class ConfigEntityDenormalizer in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php \Drupal\jsonapi\Normalizer\ConfigEntityDenormalizer
- 10 core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php \Drupal\jsonapi\Normalizer\ConfigEntityDenormalizer
Converts the Drupal config entity object to a JSON:API array structure.
@internal JSON:API maintains no PHP API since its API is the HTTP API. This class may change at any time and this will break any dependencies on it.
Hierarchy
- class \Drupal\serialization\Normalizer\NormalizerBase implements \Symfony\Component\Serializer\SerializerAwareInterface, CacheableNormalizerInterface uses \Symfony\Component\Serializer\SerializerAwareTrait
- class \Drupal\jsonapi\Normalizer\NormalizerBase
- class \Drupal\jsonapi\Normalizer\EntityDenormalizerBase implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface
- class \Drupal\jsonapi\Normalizer\ConfigEntityDenormalizer
- class \Drupal\jsonapi\Normalizer\EntityDenormalizerBase implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface
- class \Drupal\jsonapi\Normalizer\NormalizerBase
Expanded class hierarchy of ConfigEntityDenormalizer
See also
https://www.drupal.org/project/drupal/issues/3032787
1 string reference to 'ConfigEntityDenormalizer'
- jsonapi.services.yml in core/
modules/ jsonapi/ jsonapi.services.yml - core/modules/jsonapi/jsonapi.services.yml
1 service uses ConfigEntityDenormalizer
File
- core/
modules/ jsonapi/ src/ Normalizer/ ConfigEntityDenormalizer.php, line 17
Namespace
Drupal\jsonapi\NormalizerView source
final class ConfigEntityDenormalizer extends EntityDenormalizerBase {
/**
* {@inheritdoc}
*/
protected $supportedInterfaceOrClass = ConfigEntityInterface::class;
/**
* {@inheritdoc}
*/
protected function prepareInput(array $data, ResourceType $resource_type, $format, array $context) {
$prepared = [];
foreach ($data as $key => $value) {
$prepared[$resource_type
->getInternalName($key)] = $value;
}
return $prepared;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableNormalizerInterface:: |
constant | Name of key for bubbling cacheability metadata via serialization context. | ||
ConfigEntityDenormalizer:: |
protected | property |
The interface or class that this Normalizer supports. Overrides NormalizerBase:: |
|
ConfigEntityDenormalizer:: |
protected | function |
Prepares the input data to create the entity. Overrides EntityDenormalizerBase:: |
|
EntityDenormalizerBase:: |
protected | property | The entity type manager. | |
EntityDenormalizerBase:: |
protected | property | The entity field manager. | |
EntityDenormalizerBase:: |
protected | property | The field plugin manager. | |
EntityDenormalizerBase:: |
protected | property | The JSON:API resource type repository. | |
EntityDenormalizerBase:: |
public | function | Denormalizes data back into an object of the given class. | |
EntityDenormalizerBase:: |
public | function | Normalizes an object into a set of arrays/scalars. | |
EntityDenormalizerBase:: |
public | function |
Checks whether the given class is supported for normalization by this normalizer. Overrides NormalizerBase:: |
|
EntityDenormalizerBase:: |
public | function | Constructs an EntityDenormalizerBase object. | |
NormalizerBase:: |
protected | property |
List of formats which supports (de-)normalization. Overrides NormalizerBase:: |
|
NormalizerBase:: |
protected | function | Adds cacheability if applicable. | |
NormalizerBase:: |
protected | function |
Checks if the provided format is supported by this normalizer. Overrides NormalizerBase:: |
|
NormalizerBase:: |
protected static | function | Rasterizes a value recursively. | |
NormalizerBase:: |
public | function | Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() | 1 |