Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / paragraphs / src / Annotation / ParagraphsBehavior.php
1 <?php
2
3 namespace Drupal\paragraphs\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a ParagraphsBehavior annotation object.
9  *
10  * Paragraphs behavior builders handle extra settings for the paragraph
11  * entity.
12  *
13  * @Annotation
14  *
15  */
16 class ParagraphsBehavior extends Plugin {
17
18   /**
19    * The plugin ID.
20    *
21    * @var string
22    */
23   public $id;
24
25   /**
26    * The human-readable name of the paragraphs behavior plugin.
27    *
28    * @ingroup plugin_translatable
29    *
30    * @var \Drupal\Core\Annotation\Translation
31    */
32   public $label;
33
34   /**
35    * The plugin description.
36    *
37    * @ingroup plugin_translatable
38    *
39    * @var string
40    */
41   public $description;
42
43   /**
44    * The plugin weight.
45    *
46    * @var int
47    */
48   public $weight;
49
50 }