DurationDataInterface.php in Duration Field 8
Namespace
Drupal\duration_field\Plugin\DataTypeFile
src/Plugin/DataType/DurationDataInterface.phpView source
<?php
namespace Drupal\duration_field\Plugin\DataType;
use Drupal\Core\TypedData\PrimitiveInterface;
/**
* The duration data type.
*
* The plain value of an integer is an ISO 8601 Duration string. For setting the
* value a valid ISO 8601 Duration string must be passed.
*
* @ingroup typed_data
*/
interface DurationDataInterface extends PrimitiveInterface {
}
Interfaces
Name | Description |
---|---|
DurationDataInterface | The duration data type. |