You are here

VideoEmbedProvider.php in Video Embed Field 8.2

Same filename and directory in other branches
  1. 8 src/Annotation/VideoEmbedProvider.php

File

src/Annotation/VideoEmbedProvider.php
View source
<?php

namespace Drupal\video_embed_field\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a VideoEmbedProvider item annotation object.
 *
 * @Annotation
 */
class VideoEmbedProvider extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The title of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

}

Classes

Namesort descending Description
VideoEmbedProvider Defines a VideoEmbedProvider item annotation object.