class RISReferenceNormalizer in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x modules/bibcite_ris/src/Normalizer/RISReferenceNormalizer.php \Drupal\bibcite_ris\Normalizer\RISReferenceNormalizer
Normalizes/denormalizes reference entity to RIS 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_ris\Normalizer\RISReferenceNormalizer
- 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 RISReferenceNormalizer
1 string reference to 'RISReferenceNormalizer'
- bibcite_ris.services.yml in modules/
bibcite_ris/ bibcite_ris.services.yml - modules/bibcite_ris/bibcite_ris.services.yml
1 service uses RISReferenceNormalizer
File
- modules/
bibcite_ris/ src/ Normalizer/ RISReferenceNormalizer.php, line 11
Namespace
Drupal\bibcite_ris\NormalizerView source
class RISReferenceNormalizer extends ReferenceNormalizerBase {
/**
* {@inheritdoc}
*/
protected function extractFields(ReferenceInterface $reference, $format) {
$attributes = parent::extractFields($reference, $format);
$isbn = $this
->extractScalar($reference
->get('bibcite_isbn'));
$issn = $this
->extractScalar($reference
->get('bibcite_issn'));
if ($isbn || $issn) {
$attributes['SN'] = trim($isbn . '/' . $issn, '/');
}
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. | |
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:: |
|
RISReferenceNormalizer:: |
protected | function |
Extract fields values from reference entity. Overrides ReferenceNormalizerBase:: |