You are here

protected function NormalizerBase::checkFormat in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/serialization/src/Normalizer/NormalizerBase.php \Drupal\serialization\Normalizer\NormalizerBase::checkFormat()

Checks if the provided format is supported by this normalizer.

Parameters

string $format: The format to check.

Return value

bool TRUE if the format is supported, FALSE otherwise. If no format is specified this will return TRUE.

2 calls to NormalizerBase::checkFormat()
NormalizerBase::supportsDenormalization in core/modules/serialization/src/Normalizer/NormalizerBase.php
Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()
NormalizerBase::supportsNormalization in core/modules/serialization/src/Normalizer/NormalizerBase.php
Checks whether the given class is supported for normalization by this normalizer.

File

core/modules/serialization/src/Normalizer/NormalizerBase.php, line 74
Contains \Drupal\serialization\Normalizer\NormalizerBase.

Class

NormalizerBase
Base class for Normalizers.

Namespace

Drupal\serialization\Normalizer

Code

protected function checkFormat($format = NULL) {
  if (!isset($format) || !isset($this->format)) {
    return TRUE;
  }
  return in_array($format, (array) $this->format);
}