class AggregatorProcessor

Defines a Plugin annotation object for aggregator processor plugins.

Hierarchy

Expanded class hierarchy of AggregatorProcessor

2 files declare their use of AggregatorProcessor
DefaultProcessor.php in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/processor/DefaultProcessor.php
Contains \Drupal\aggregator\Plugin\aggregator\processor\DefaultProcessor.
TestProcessor.php in drupal/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/processor/TestProcessor.php
Contains \Drupal\aggregator_test\Plugin\aggregator\processor\TestProcessor.
2 classes are annotated with AggregatorProcessor
DefaultProcessor in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/processor/DefaultProcessor.php
Defines a default processor implementation.
TestProcessor in drupal/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/processor/TestProcessor.php
Defines a default processor implementation.

File

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

Namespace

Drupal\aggregator\Annotation
View source
class AggregatorProcessor 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
AggregatorProcessor::$description public property The description of the plugin.
AggregatorProcessor::$id public property The plugin ID.
AggregatorProcessor::$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.