Version 1
[yaffs-website] / web / modules / contrib / video_embed_field / src / Annotation / VideoEmbedProvider.php
1 <?php
2
3 namespace Drupal\video_embed_field\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a VideoEmbedProvider item annotation object.
9  *
10  * @Annotation
11  */
12 class VideoEmbedProvider extends Plugin {
13
14   /**
15    * The plugin ID.
16    *
17    * @var string
18    */
19   public $id;
20
21   /**
22    * The title of the plugin.
23    *
24    * @var \Drupal\Core\Annotation\Translation
25    *
26    * @ingroup plugin_translatable
27    */
28   public $title;
29
30 }