class AggregatorFetcher

Defines a Plugin annotation object for aggregator fetcher plugins.

Hierarchy

Expanded class hierarchy of AggregatorFetcher

2 files declare their use of AggregatorFetcher
DefaultFetcher.php in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/fetcher/DefaultFetcher.php
Contains \Drupal\aggregator\Plugin\aggregator\fetcher\DefaultFetcher.
TestFetcher.php in drupal/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/fetcher/TestFetcher.php
Contains \Drupal\aggregator_test\Plugin\aggregator\fetcher\TestFetcher.
2 classes are annotated with AggregatorFetcher
DefaultFetcher in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/fetcher/DefaultFetcher.php
Defines a default fetcher implementation.
TestFetcher in drupal/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/fetcher/TestFetcher.php
Defines a test fetcher implementation.

File

drupal/core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorFetcher.php, line 17
Contains \Drupal\aggregator\Annotation\AggregatorFetcher.

Namespace

Drupal\aggregator\Annotation
View source
class AggregatorFetcher extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The title of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

  /**
   * The description of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $description;

}

Members

Namesort descending Modifiers Type Description Overrides
AggregatorFetcher::$description public property The description of the plugin.
AggregatorFetcher::$id public property The plugin ID.
AggregatorFetcher::$title public property The title of the plugin.
Plugin::$definition protected property The plugin definiton read from the class annotation.
Plugin::get public function Implements Drupal\Core\Annotation\AnnotationInterface::get(). Overrides AnnotationInterface::get
Plugin::parse protected function Parses an annotation into its definition.
Plugin::__construct public function Constructs a Plugin object.