function DateTimeNormalizer::doNormalize

Same name and namespace in other branches
  1. 11.x core/modules/serialization/src/Normalizer/DateTimeNormalizer.php \Drupal\serialization\Normalizer\DateTimeNormalizer::doNormalize()

Attributes

#[JsonSchema([ 'type' => 'string', 'format' => 'date-time', ])]

Parameters

mixed $object: Object to normalize.

string|null $format: Format the normalization result will be encoded as.

array $context: Context options for the normalizer.

Return value

array|string|int|float|bool|\ArrayObject|null The normalization. An \ArrayObject is used to make sure an empty object is encoded as an object not an array.

Overrides SchematicNormalizerTrait::doNormalize

File

core/modules/serialization/src/Normalizer/DateTimeNormalizer.php, line 55

Class

DateTimeNormalizer
Converts values for datetime objects to RFC3339 and from common formats.

Namespace

Drupal\serialization\Normalizer

Code

public function doNormalize($object, $format = NULL, array $context = []) : array|string|int|float|bool|\ArrayObject|null {
  assert($object instanceof DateTimeInterface);
  $drupal_date_time = $object->getDateTime();
  if ($drupal_date_time === NULL) {
    return $drupal_date_time;
  }
  return $drupal_date_time->setTimezone($this->getNormalizationTimezone())
    ->format(\DateTime::RFC3339);
}

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