public function Duration::getString

Overrides TypedData::getString().

Overrides TypedData::getString

File

drupal/core/lib/Drupal/Core/TypedData/Type/Duration.php, line 69
Contains \Drupal\Core\TypedData\Type\Duration.

Class

Duration
The duration data type.

Namespace

Drupal\Core\TypedData\Type

Code

public function getString() {

  // Generate an ISO 8601 formatted string as supported by
  // DateInterval::__construct() and setValue().
  return (string) $this
    ->getValue()
    ->format('%rP%yY%mM%dDT%hH%mM%sS');
}