Uri.php 340 B

12345678910111213141516171819
  1. <?php
  2. namespace Drupal\Core\TypedData\Plugin\DataType;
  3. use Drupal\Core\TypedData\Type\UriInterface;
  4. /**
  5. * The URI data type.
  6. *
  7. * The plain value of a URI is an absolute URI represented as PHP string.
  8. *
  9. * @DataType(
  10. * id = "uri",
  11. * label = @Translation("URI")
  12. * )
  13. */
  14. class Uri extends StringData implements UriInterface {
  15. }