Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / quickedit / src / Annotation / InPlaceEditor.php
1 <?php
2
3 namespace Drupal\quickedit\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines an InPlaceEditor annotation object.
9  *
10  * Plugin Namespace: Plugin\InPlaceEditor
11  *
12  * For a working example, see \Drupal\quickedit\Plugin\InPlaceEditor\PlainTextEditor
13  *
14  * @see \Drupal\quickedit\Plugin\InPlaceEditorBase
15  * @see \Drupal\quickedit\Plugin\InPlaceEditorInterface
16  * @see \Drupal\quickedit\Plugin\InPlaceEditorManager
17  * @see plugin_api
18  *
19  * @Annotation
20  */
21 class InPlaceEditor extends Plugin {
22
23   /**
24    * The plugin ID.
25    *
26    * @var string
27    */
28   public $id;
29
30   /**
31    * The name of the module providing the in-place editor plugin.
32    *
33    * @var string
34    */
35   public $module;
36
37 }