XmlEncoder.php

Same filename and directory in other branches
  1. 8.9.x core/modules/serialization/src/Encoder/XmlEncoder.php
  2. 10 core/modules/serialization/src/Encoder/XmlEncoder.php
  3. 11.x core/modules/serialization/src/Encoder/XmlEncoder.php

Namespace

Drupal\serialization\Encoder

File

core/modules/serialization/src/Encoder/XmlEncoder.php

View source
<?php

namespace Drupal\serialization\Encoder;

use Symfony\Component\Serializer\Encoder\EncoderInterface;
use Symfony\Component\Serializer\Encoder\DecoderInterface;
use Symfony\Component\Serializer\Encoder\XmlEncoder as BaseXmlEncoder;
use Symfony\Component\Serializer\SerializerAwareInterface;
use Symfony\Component\Serializer\SerializerAwareTrait;

/**
 * Adds XML support for serializer.
 *
 * This acts as a wrapper class for Symfony's XmlEncoder so that it is not
 * implementing NormalizationAwareInterface, and can be normalized externally.
 *
 * @internal
 *   This encoder should not be used directly. Rather, use the `serializer`
 *   service.
 */
class XmlEncoder implements SerializerAwareInterface, EncoderInterface, DecoderInterface {
    use SerializerAwareTrait;
    
    /**
     * The formats that this Encoder supports.
     *
     * @var array
     */
    protected static $format = [
        'xml',
    ];
    
    /**
     * An instance of the Symfony XmlEncoder to perform the actual encoding.
     *
     * @var \Symfony\Component\Serializer\Encoder\XmlEncoder
     */
    protected $baseEncoder;
    
    /**
     * Gets the base encoder instance.
     *
     * @return \Symfony\Component\Serializer\Encoder\XmlEncoder
     *   The base encoder.
     */
    public function getBaseEncoder() {
        if (!isset($this->baseEncoder)) {
            $this->baseEncoder = new BaseXmlEncoder();
            $this->baseEncoder
                ->setSerializer($this->serializer);
        }
        return $this->baseEncoder;
    }
    
    /**
     * Sets the base encoder instance.
     *
     * @param \Symfony\Component\Serializer\Encoder\XmlEncoder $encoder
     *   The XML encoder.
     */
    public function setBaseEncoder($encoder) {
        $this->baseEncoder = $encoder;
    }
    
    /**
     * {@inheritdoc}
     */
    public function encode($data, $format, array $context = []) {
        return $this->getBaseEncoder()
            ->encode($data, $format, $context);
    }
    
    /**
     * {@inheritdoc}
     */
    public function supportsEncoding($format) {
        return in_array($format, static::$format);
    }
    
    /**
     * {@inheritdoc}
     */
    public function decode($data, $format, array $context = []) {
        return $this->getBaseEncoder()
            ->decode($data, $format, $context);
    }
    
    /**
     * {@inheritdoc}
     */
    public function supportsDecoding($format) {
        return in_array($format, static::$format);
    }

}

Classes

Title Deprecated Summary
XmlEncoder Adds XML support for serializer.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.