Drupal investigation

Url.php 865B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Validator\Constraints;
  11. use Symfony\Component\Validator\Constraint;
  12. /**
  13. * @Annotation
  14. * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  15. *
  16. * @author Bernhard Schussek <bschussek@gmail.com>
  17. */
  18. class Url extends Constraint
  19. {
  20. const INVALID_URL_ERROR = '57c2f299-1154-4870-89bb-ef3b1f5ad229';
  21. protected static $errorNames = array(
  22. self::INVALID_URL_ERROR => 'INVALID_URL_ERROR',
  23. );
  24. public $message = 'This value is not a valid URL.';
  25. public $dnsMessage = 'The host could not be resolved.';
  26. public $protocols = array('http', 'https');
  27. public $checkDNS = false;
  28. }