Added missing modules, including some as submodules.
[yaffs-website] / web / modules / contrib / entityqueue / src / Annotation / EntityQueueHandler.php
1 <?php
2
3 namespace Drupal\entityqueue\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a EntityQueueHandler annotation object.
9  *
10  * Plugin Namespace: Plugin\EntityQueueHandler
11  *
12  * @see \Drupal\entityqueue\EntityQueueHandlerInterface
13  * @see \Drupal\entityqueue\EntityQueueHandlerManager
14  * @see \Drupal\entityqueue\EntityQueueHandlerBase
15  * @see plugin_api
16  *
17  * @Annotation
18  */
19 class EntityQueueHandler extends Plugin {
20
21   /**
22    * The plugin ID.
23    *
24    * @var string
25    */
26   public $id;
27
28   /**
29    * The human-readable name of the queue handler plugin.
30    *
31    * @ingroup plugin_translatable
32    *
33    * @var \Drupal\Core\Annotation\Translation
34    */
35   public $title;
36
37 }