protected function ReferenceNormalizerBase::getContributorKey in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x modules/bibcite_entity/src/Normalizer/ReferenceNormalizerBase.php \Drupal\bibcite_entity\Normalizer\ReferenceNormalizerBase::getContributorKey()
Get format contributor key.
Return value
string|null Contributor key.
3 calls to ReferenceNormalizerBase::getContributorKey()
- BibtexReferenceNormalizer::denormalize in modules/
bibcite_bibtex/ src/ Normalizer/ BibtexReferenceNormalizer.php - Denormalizes data back into an object of the given class.
- CslReferenceNormalizer::normalize in modules/
bibcite_entity/ src/ Normalizer/ CslReferenceNormalizer.php - Normalizes an object into a set of arrays/scalars.
- ReferenceNormalizerBase::denormalize in modules/
bibcite_entity/ src/ Normalizer/ ReferenceNormalizerBase.php - Denormalizes data back into an object of the given class.
File
- modules/
bibcite_entity/ src/ Normalizer/ ReferenceNormalizerBase.php, line 138
Class
- ReferenceNormalizerBase
- Base normalizer class for bibcite formats.
Namespace
Drupal\bibcite_entity\NormalizerCode
protected function getContributorKey() {
return $this->contributorKey;
}