Pull merge.
[yaffs-website] / web / core / modules / aggregator / src / Annotation / AggregatorFetcher.php
1 <?php
2
3 namespace Drupal\aggregator\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a Plugin annotation object for aggregator fetcher plugins.
9  *
10  * Plugin Namespace: Plugin\aggregator\fetcher
11  *
12  * For a working example, see \Drupal\aggregator\Plugin\aggregator\fetcher\DefaultFetcher
13  *
14  * @see \Drupal\aggregator\Plugin\AggregatorPluginManager
15  * @see \Drupal\aggregator\Plugin\FetcherInterface
16  * @see \Drupal\aggregator\Plugin\AggregatorPluginSettingsBase
17  * @see plugin_api
18  *
19  * @Annotation
20  */
21 class AggregatorFetcher extends Plugin {
22
23   /**
24    * The plugin ID.
25    *
26    * @var string
27    */
28   public $id;
29
30   /**
31    * The title of the plugin.
32    *
33    * @var \Drupal\Core\Annotation\Translation
34    *
35    * @ingroup plugin_translatable
36    */
37   public $title;
38
39   /**
40    * The description of the plugin.
41    *
42    * @var \Drupal\Core\Annotation\Translation
43    *
44    * @ingroup plugin_translatable
45    */
46   public $description;
47
48 }