You are here

class MarkupNormalizer in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/serialization/src/Normalizer/MarkupNormalizer.php \Drupal\serialization\Normalizer\MarkupNormalizer

Normalizes MarkupInterface objects into a string.

Hierarchy

Expanded class hierarchy of MarkupNormalizer

1 string reference to 'MarkupNormalizer'
serialization.services.yml in core/modules/serialization/serialization.services.yml
core/modules/serialization/serialization.services.yml
1 service uses MarkupNormalizer
serializer.normalizer.safe_string in core/modules/serialization/serialization.services.yml
Drupal\serialization\Normalizer\MarkupNormalizer

File

core/modules/serialization/src/Normalizer/MarkupNormalizer.php, line 10

Namespace

Drupal\serialization\Normalizer
View source
class MarkupNormalizer extends NormalizerBase {

  /**
   * {@inheritdoc}
   */
  protected $supportedInterfaceOrClass = MarkupInterface::class;

  /**
   * {@inheritdoc}
   */
  public function normalize($object, $format = NULL, array $context = []) {
    return (string) $object;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CacheableNormalizerInterface::SERIALIZATION_CONTEXT_CACHEABILITY constant Name of key for bubbling cacheability metadata via serialization context.
MarkupNormalizer::$supportedInterfaceOrClass protected property The interface or class that this Normalizer supports. Overrides NormalizerBase::$supportedInterfaceOrClass
MarkupNormalizer::normalize public function
NormalizerBase::$format protected property List of formats which supports (de-)normalization. 3
NormalizerBase::addCacheableDependency protected function Adds cacheability if applicable.
NormalizerBase::checkFormat protected function Checks if the provided format is supported by this normalizer. 1
NormalizerBase::supportsDenormalization public function Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() 1
NormalizerBase::supportsNormalization public function 1