AggregatorParser.php

Contains \Drupal\aggregator\Annotation\AggregatorParser.

Namespace

Drupal\aggregator\Annotation

File

drupal/core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorParser.php
View source
<?php

/**
 * @file
 * Contains \Drupal\aggregator\Annotation\AggregatorParser.
 */
namespace Drupal\aggregator\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Plugin annotation object for aggregator parser plugins.
 *
 * @Annotation
 */
class AggregatorParser 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

Namesort descending Description
AggregatorParser Defines a Plugin annotation object for aggregator parser plugins.