You are here

InstagramEmbedCodeConstraint.php in Media entity Instagram 8

Same filename and directory in other branches
  1. 8.2 src/Plugin/Validation/Constraint/InstagramEmbedCodeConstraint.php

File

src/Plugin/Validation/Constraint/InstagramEmbedCodeConstraint.php
View source
<?php

namespace Drupal\media_entity_instagram\Plugin\Validation\Constraint;

use Symfony\Component\Validator\Constraint;

/**
 * Check if a value is a valid Instagram embed code/URL.
 *
 * @Constraint(
 *   id = "InstagramEmbedCode",
 *   label = @Translation("Instagram embed code", context = "Validation"),
 *   type = { "link", "string", "string_long" }
 * )
 */
class InstagramEmbedCodeConstraint extends Constraint {

  /**
   * The default violation message.
   *
   * @var string
   */
  public $message = 'Not valid Instagram URL/Embed code.';

}

Classes

Namesort descending Description
InstagramEmbedCodeConstraint Check if a value is a valid Instagram embed code/URL.