class MarcReferenceNormalizer in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x modules/bibcite_marc/src/Normalizer/MarcReferenceNormalizer.php \Drupal\bibcite_marc\Normalizer\MarcReferenceNormalizer
Normalizes/denormalizes reference entity to Marc format.
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\ReferenceNormalizerBase
- class \Drupal\bibcite_marc\Normalizer\MarcReferenceNormalizer
- class \Drupal\bibcite_entity\Normalizer\ReferenceNormalizerBase
- class \Drupal\serialization\Normalizer\EntityNormalizer implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface uses FieldableEntityNormalizerTrait
- class \Drupal\serialization\Normalizer\ComplexDataNormalizer
Expanded class hierarchy of MarcReferenceNormalizer
1 string reference to 'MarcReferenceNormalizer'
- bibcite_marc.services.yml in modules/
bibcite_marc/ bibcite_marc.services.yml - modules/bibcite_marc/bibcite_marc.services.yml
1 service uses MarcReferenceNormalizer
File
- modules/
bibcite_marc/ src/ Normalizer/ MarcReferenceNormalizer.php, line 11
Namespace
Drupal\bibcite_marc\NormalizerView source
class MarcReferenceNormalizer extends ReferenceNormalizerBase {
/**
* {@inheritdoc}
*/
protected function extractFields(ReferenceInterface $reference, $format) {
$attributes = parent::extractFields($reference, $format);
$attributes['title'] = $this
->extractScalar($reference
->get('title'));
$attributes['reference'] = $reference
->id();
return $attributes;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableNormalizerInterface:: |
constant | Name of key for bubbling cacheability metadata via serialization context. | ||
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. | |
MarcReferenceNormalizer:: |
protected | function |
Extract fields values from reference entity. Overrides ReferenceNormalizerBase:: |
|
NormalizerBase:: |
protected | function | Adds cacheability if applicable. | |
NormalizerBase:: |
protected | function | Checks if the provided format is supported by this normalizer. | 2 |
NormalizerBase:: |
public | function | Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() | 1 |
NormalizerBase:: |
public | function | Checks whether the given class is supported for normalization by this normalizer. | 1 |
ReferenceNormalizerBase:: |
protected | property | Configuration factory service. | |
ReferenceNormalizerBase:: |
public | property | Format contributor key. | |
ReferenceNormalizerBase:: |
public | property | Default publication type. Will be assigned for types without mapping. | |
ReferenceNormalizerBase:: |
protected | property | Mapping between bibcite_entity and format fields. | |
ReferenceNormalizerBase:: |
protected | property |
The format that this Normalizer supports. Overrides NormalizerBase:: |
|
ReferenceNormalizerBase:: |
public | property | Format keyword key. | |
ReferenceNormalizerBase:: |
protected | property |
The interface or class that this Normalizer supports. Overrides EntityNormalizer:: |
|
ReferenceNormalizerBase:: |
public | property | Format type key. | |
ReferenceNormalizerBase:: |
protected | property | Mapping between bibcite_entity and format publication types. | |
ReferenceNormalizerBase:: |
protected | function | Convert publication type to format type. | |
ReferenceNormalizerBase:: |
protected | function | Convert format type to publication type. | |
ReferenceNormalizerBase:: |
protected | function | Convert format keys to Bibcite entity keys and filter non-mapped. | |
ReferenceNormalizerBase:: |
constant | Default reference type. Will be assigned for types without mapping. | ||
ReferenceNormalizerBase:: |
public | function |
Denormalizes data back into an object of the given class. Overrides EntityNormalizer:: |
2 |
ReferenceNormalizerBase:: |
protected | function | Extract authors values from field. | 1 |
ReferenceNormalizerBase:: |
protected | function | Extract keywords labels from field. | |
ReferenceNormalizerBase:: |
protected | function | Extract scalar value. | |
ReferenceNormalizerBase:: |
protected | function | Get format contributor key. | |
ReferenceNormalizerBase:: |
protected | function | Get format keyword key. | |
ReferenceNormalizerBase:: |
protected | function | Get format type key. | |
ReferenceNormalizerBase:: |
public | function |
Normalizes an object into a set of arrays/scalars. Overrides ComplexDataNormalizer:: |
2 |
ReferenceNormalizerBase:: |
public | function | Format setter for DI calls. | |
ReferenceNormalizerBase:: |
public | function |
Construct new BibliographyNormalizer object. Overrides EntityNormalizer:: |