Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / media_entity / src / Annotation / MediaType.php
1 <?php
2
3 namespace Drupal\media_entity\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines an media entity type plugin annotation object.
9  *
10  * @see hook_media_entity_type_info_alter()
11  *
12  * @Annotation
13  */
14 class MediaType extends Plugin {
15
16   /**
17    * The plugin ID.
18    *
19    * @var string
20    */
21   public $id;
22
23   /**
24    * The human-readable name of the type.
25    *
26    * @ingroup plugin_translatable
27    *
28    * @var \Drupal\Core\Annotation\Translation
29    */
30   public $label;
31
32   /**
33    * A brief description of the plugin.
34    *
35    * This will be shown when adding or configuring this display.
36    *
37    * @ingroup plugin_translatable
38    *
39    * @var \Drupal\Core\Annotation\Translation (optional)
40    */
41   public $description = '';
42
43 }