class ComplexDataNormalizer

Converts the Drupal entity object structures to a normalized array.

This is the default Normalizer for entities. All formats that have Encoders registered with the Serializer in the DIC will be normalized with this class unless another Normalizer is registered which supersedes it. If a module wants to use format-specific or class-specific normalization, then that module can register a new Normalizer and give it a higher priority than this one.

Hierarchy

Expanded class hierarchy of ComplexDataNormalizer

1 file declares its use of ComplexDataNormalizer
EntitySerializationTest.php in drupal/core/modules/serialization/lib/Drupal/serialization/Tests/EntitySerializationTest.php
Contains \Drupal\serialization\Tests\EntitySerializationTest.
1 string reference to 'ComplexDataNormalizer'
serialization.services.yml in drupal/core/modules/serialization/serialization.services.yml
drupal/core/modules/serialization/serialization.services.yml
1 service uses ComplexDataNormalizer

File

drupal/core/modules/serialization/lib/Drupal/serialization/Normalizer/ComplexDataNormalizer.php, line 22
Contains \Drupal\serialization\Normalizer\ComplexDataNormalizer.

Namespace

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

  /**
   * The interface or class that this Normalizer supports.
   *
   * @var string
   */
  protected $supportedInterfaceOrClass = 'Drupal\\Core\\TypedData\\ComplexDataInterface';

  /**
   * Implements \Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize().
   */
  public function normalize($object, $format = NULL, array $context = array()) {
    $attributes = array();
    foreach ($object as $name => $field) {
      $attributes[$name] = $this->serializer
        ->normalize($field, $format);
    }
    return $attributes;
  }

}

Members