class SerializationTestNormalizer

Hierarchy

Expanded class hierarchy of SerializationTestNormalizer

2 string references to 'SerializationTestNormalizer'
SerializationTestNormalizer::normalize in drupal/core/modules/serialization/tests/serialization_test/lib/Drupal/serialization_test/SerializationTestNormalizer.php
Normalizes an object into a set of arrays/scalars.
serialization_test.services.yml in drupal/core/modules/serialization/tests/serialization_test/serialization_test.services.yml
drupal/core/modules/serialization/tests/serialization_test/serialization_test.services.yml
1 service uses SerializationTestNormalizer

File

drupal/core/modules/serialization/tests/serialization_test/lib/Drupal/serialization_test/SerializationTestNormalizer.php, line 12
Contains \Drupal\serialization_test\SerializationTestNormalizer.

Namespace

Drupal\serialization_test
View source
class SerializationTestNormalizer implements NormalizerInterface {

  /**
   * The format that this Normalizer supports.
   *
   * @var string
   */
  protected static $format = 'serialization_test';

  /**
   * Normalizes an object into a set of arrays/scalars.
   *
   * @param object $object
   *   Object to normalize.
   * @param string $format
   *   Format the normalization result will be encoded as.
   *
   * @return array
   *   An array containing a normalized representation of $object, appropriate
   *   for encoding to the requested format.
   */
  public function normalize($object, $format = NULL, array $context = array()) {
    $normalized = (array) $object;

    // Add identifying value that can be used to verify that the expected
    // normalizer was invoked.
    $normalized['normalized_by'] = 'SerializationTestNormalizer';
    return $normalized;
  }

  /**
   * Checks whether format is supported by this normalizer.
   *
   * @param mixed  $data
   *   Data to normalize.
   * @param string $format
   *   Format the normalization result will be encoded as.
   *
   * @return bool
   *   Returns TRUE if the normalizer can handle the request.
   */
  public function supportsNormalization($data, $format = NULL) {
    return static::$format === $format;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SerializationTestNormalizer::$format protected static property The format that this Normalizer supports.
SerializationTestNormalizer::normalize public function Normalizes an object into a set of arrays/scalars. Overrides NormalizerInterface::normalize
SerializationTestNormalizer::supportsNormalization public function Checks whether format is supported by this normalizer. Overrides NormalizerInterface::supportsNormalization