class TestParser
Same name 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 \Drupal\aggregator\Plugin\ParserInterface uses \Drupal\Core\Messenger\MessengerTrait
- class \Drupal\aggregator_test\Plugin\aggregator\parser\TestParser extends \Drupal\aggregator\Plugin\aggregator\parser\DefaultParser implements \Drupal\aggregator\Plugin\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
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
MessengerTrait::$messenger | protected | property | The messenger. | 17 | |
MessengerTrait::messenger | public | function | Gets the messenger. | 17 | |
MessengerTrait::setMessenger | public | function | Sets the messenger. | ||
TestParser::parse | public | function | Implements \Drupal\aggregator\Plugin\ParserInterface::parse(). | Overrides DefaultParser::parse |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.