class TestParser in Drupal 8
Same name and namespace in other branches
- 9 core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/parser/TestParser.php \Drupal\aggregator_test\Plugin\aggregator\parser\TestParser
Defines a Test parser implementation.
Parses RSS, Atom and RDF feeds.
Plugin annotation
@AggregatorParser(
id = "aggregator_test_parser",
title = @Translation("Test parser"),
description = @Translation("Dummy parser for testing purposes.")
)
Hierarchy
- class \Drupal\aggregator\Plugin\aggregator\parser\DefaultParser implements ParserInterface uses MessengerTrait
- class \Drupal\aggregator_test\Plugin\aggregator\parser\TestParser implements ParserInterface
Expanded class hierarchy of TestParser
File
- core/
modules/ aggregator/ tests/ modules/ aggregator_test/ src/ Plugin/ aggregator/ parser/ TestParser.php, line 20
Namespace
Drupal\aggregator_test\Plugin\aggregator\parserView source
class TestParser extends DefaultParser implements ParserInterface {
/**
* Implements \Drupal\aggregator\Plugin\ParserInterface::parse().
*
* @todo Actually test this.
*/
public function parse(FeedInterface $feed) {
return parent::parse($feed);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
TestParser:: |
public | function |
Implements \Drupal\aggregator\Plugin\ParserInterface::parse(). Overrides DefaultParser:: |