function ConfigEntityDenormalizer::prepareInput
Same name in other branches
- 8.9.x core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php \Drupal\jsonapi\Normalizer\ConfigEntityDenormalizer::prepareInput()
- 10 core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php \Drupal\jsonapi\Normalizer\ConfigEntityDenormalizer::prepareInput()
- 11.x core/modules/jsonapi/src/Normalizer/ConfigEntityDenormalizer.php \Drupal\jsonapi\Normalizer\ConfigEntityDenormalizer::prepareInput()
Overrides EntityDenormalizerBase::prepareInput
File
-
core/
modules/ jsonapi/ src/ Normalizer/ ConfigEntityDenormalizer.php, line 27
Class
- ConfigEntityDenormalizer
- Converts the Drupal config entity object to a JSON:API array structure.
Namespace
Drupal\jsonapi\NormalizerCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.