class KeywordNormalizer in Bibliography & Citation 2.0.x
Same name and namespace in other branches
- 8 modules/bibcite_entity/src/Normalizer/KeywordNormalizer.php \Drupal\bibcite_entity\Normalizer\KeywordNormalizer
Base normalizer class for bibcite formats.
Hierarchy
- class \Drupal\serialization\Normalizer\NormalizerBase implements \Symfony\Component\Serializer\SerializerAwareInterface, CacheableNormalizerInterface uses \Symfony\Component\Serializer\SerializerAwareTrait
- class \Drupal\serialization\Normalizer\ComplexDataNormalizer
- class \Drupal\serialization\Normalizer\EntityNormalizer implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface uses FieldableEntityNormalizerTrait
- class \Drupal\bibcite_entity\Normalizer\KeywordNormalizer
- class \Drupal\serialization\Normalizer\EntityNormalizer implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface uses FieldableEntityNormalizerTrait
- class \Drupal\serialization\Normalizer\ComplexDataNormalizer
Expanded class hierarchy of KeywordNormalizer
1 string reference to 'KeywordNormalizer'
- bibcite_entity.services.yml in modules/
bibcite_entity/ bibcite_entity.services.yml - modules/bibcite_entity/bibcite_entity.services.yml
1 service uses KeywordNormalizer
- bibcite_entity.normalizer.keyword in modules/
bibcite_entity/ bibcite_entity.services.yml - Drupal\bibcite_entity\Normalizer\KeywordNormalizer
File
- modules/
bibcite_entity/ src/ Normalizer/ KeywordNormalizer.php, line 10
Namespace
Drupal\bibcite_entity\NormalizerView source
class KeywordNormalizer extends EntityNormalizer {
/**
* The interface or class that this Normalizer supports.
*
* @var array
*/
protected $supportedInterfaceOrClass = [
'Drupal\\bibcite_entity\\Entity\\Keyword',
];
/**
* {@inheritdoc}
*/
public function denormalize($data, $class, $format = NULL, array $context = []) {
$entity = parent::denormalize($data, $class, $format, $context);
$entity_manager = $this
->getEntityTypeManager();
if (!empty($context['keyword_deduplication'])) {
$storage = $entity_manager
->getStorage('bibcite_keyword');
$label_key = $storage
->getEntityType()
->getKey('label');
$query = $storage
->getQuery()
->condition($label_key, trim($entity
->label()))
->range(0, 1);
$ids = $query
->execute();
if ($ids && ($result = $storage
->loadMultiple($ids))) {
return reset($result);
}
}
return $entity;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableNormalizerInterface:: |
constant | Name of key for bubbling cacheability metadata via serialization context. | ||
ComplexDataNormalizer:: |
public | function | 7 | |
EntityNormalizer:: |
public | function | Constructs an EntityNormalizer object. | |
FieldableEntityNormalizerTrait:: |
protected | property | The entity field manager. | |
FieldableEntityNormalizerTrait:: |
protected | property | The entity type manager. | 1 |
FieldableEntityNormalizerTrait:: |
protected | property | The entity type repository. | |
FieldableEntityNormalizerTrait:: |
protected | function | Build the field item value using the incoming data. | 7 |
FieldableEntityNormalizerTrait:: |
protected | function | Denormalizes entity data by denormalizing each field individually. | |
FieldableEntityNormalizerTrait:: |
protected | function | Determines the entity type ID to denormalize as. | |
FieldableEntityNormalizerTrait:: |
protected | function | Denormalizes the bundle property so entity creation can use it. | |
FieldableEntityNormalizerTrait:: |
protected | function | Returns the entity field manager. | |
FieldableEntityNormalizerTrait:: |
protected | function | Gets the entity type definition. | |
FieldableEntityNormalizerTrait:: |
protected | function | Returns the entity type manager. | |
FieldableEntityNormalizerTrait:: |
protected | function | Returns the entity type repository. | |
KeywordNormalizer:: |
protected | property |
The interface or class that this Normalizer supports. Overrides EntityNormalizer:: |
|
KeywordNormalizer:: |
public | function |
Overrides EntityNormalizer:: |
|
NormalizerBase:: |
protected | property | List of formats which supports (de-)normalization. | 3 |
NormalizerBase:: |
protected | function | Adds cacheability if applicable. | |
NormalizerBase:: |
protected | function | Checks if the provided format is supported by this normalizer. | 1 |
NormalizerBase:: |
public | function | Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() | 1 |
NormalizerBase:: |
public | function | 1 |