AggregatorProcessor.php

Same filename in other branches
  1. 9 core/modules/aggregator/src/Annotation/AggregatorProcessor.php

Namespace

Drupal\aggregator\Annotation

File

core/modules/aggregator/src/Annotation/AggregatorProcessor.php

View source
<?php

namespace Drupal\aggregator\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * 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
 *
 * @see \Drupal\aggregator\Plugin\AggregatorPluginManager
 * @see \Drupal\aggregator\Plugin\ProcessorInterface
 * @see \Drupal\aggregator\Plugin\AggregatorPluginSettingsBase
 * @see plugin_api
 *
 * @Annotation
 */
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;

}

Classes

Title Deprecated Summary
AggregatorProcessor Defines a Plugin annotation object for aggregator processor plugins.

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