Paragraphs Editor
ParagraphsEditorDeliveryProvider.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 /**
8  * Defines a paragraphs ckeditor delivery provider plugin annotation.
9  *
10  * Plugin Namespace: Plugin\ParagraphsEditor\delivery_provider.
11  *
12  * @Annotation
13  */
14 class ParagraphsEditorDeliveryProvider 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 plugin.
25  *
26  * @var \Drupal\Core\Annotation\Translation
27  *
28  * @ingroup plugin_translatable
29  */
30  public $title;
31 
32  /**
33  * The description of the plugin.
34  *
35  * @var \Drupal\Core\Annotation\Translation
36  *
37  * @ingroup plugin_translatable
38  */
39  public $description;
40 
41 }