function 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.
Overrides NormalizerBase::checkFormat
File
- 
              core/modules/ jsonapi/ src/ Normalizer/ NormalizerBase.php, line 63 
Class
- NormalizerBase
- Base normalizer used in all JSON:API normalizers.
Namespace
Drupal\jsonapi\NormalizerCode
protected function checkFormat($format = NULL) {
  // The parent implementation allows format-specific normalizers to be used
  // for normalization without a format. The JSON:API module wants to be
  // cautious. Hence it only allows its normalizers to be used for the
  // JSON:API format, to avoid JSON:API-specific normalizations showing up in
  // the REST API.
  return $format === $this->format;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
