OEmbedResourceConstraint.php

Same filename and directory in other branches
  1. 9 core/modules/media/src/Plugin/Validation/Constraint/OEmbedResourceConstraint.php
  2. 8.9.x core/modules/media/src/Plugin/Validation/Constraint/OEmbedResourceConstraint.php
  3. 10 core/modules/media/src/Plugin/Validation/Constraint/OEmbedResourceConstraint.php

Namespace

Drupal\media\Plugin\Validation\Constraint

File

core/modules/media/src/Plugin/Validation/Constraint/OEmbedResourceConstraint.php

View source
<?php

namespace Drupal\media\Plugin\Validation\Constraint;

use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Validation\Attribute\Constraint;
use Symfony\Component\Validator\Constraint as SymfonyConstraint;

/**
 * Checks if a value represents a valid oEmbed resource URL.
 *
 * @internal
 *   This is an internal part of the oEmbed system and should only be used by
 *   oEmbed-related code in Drupal core.
 */
class OEmbedResourceConstraint extends SymfonyConstraint {
    
    /**
     * The error message if the URL does not match any known provider.
     *
     * @var string
     */
    public $unknownProviderMessage = 'The given URL does not match any known oEmbed providers.';
    
    /**
     * The error message if the URL matches a disallowed provider.
     *
     * @var string
     */
    public $disallowedProviderMessage = 'Sorry, the @name provider is not allowed.';
    
    /**
     * The error message if the URL is not a valid oEmbed resource.
     *
     * @var string
     */
    public $invalidResourceMessage = 'The provided URL does not represent a valid oEmbed resource.';
    
    /**
     * The error message if an unexpected behavior occurs.
     *
     * @var string
     */
    public $providerErrorMessage = 'An error occurred while trying to retrieve the oEmbed provider database.';

}

Classes

Title Deprecated Summary
OEmbedResourceConstraint Checks if a value represents a valid oEmbed resource URL.

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