class AggregatorProcessor

Same name and namespace in other branches
  1. 8.9.x core/modules/aggregator/src/Annotation/AggregatorProcessor.php \Drupal\aggregator\Annotation\AggregatorProcessor

Defines a Plugin annotation object for aggregator processor plugins.

Plugin Namespace: Plugin\aggregator\processor

For a working example, see \Drupal\aggregator\Plugin\aggregator\processor\DefaultProcessor

Hierarchy

Expanded class hierarchy of AggregatorProcessor

See also

\Drupal\aggregator\Plugin\AggregatorPluginManager

\Drupal\aggregator\Plugin\ProcessorInterface

\Drupal\aggregator\Plugin\AggregatorPluginSettingsBase

Plugin API

Related topics

2 classes are annotated with AggregatorProcessor
DefaultProcessor in core/modules/aggregator/src/Plugin/aggregator/processor/DefaultProcessor.php
Defines a default processor implementation.
TestProcessor in core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/processor/TestProcessor.php
Defines a default processor implementation.

File

core/modules/aggregator/src/Annotation/AggregatorProcessor.php, line 21

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;

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.