You are here

public function AggregatorFeedBlock::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php \Drupal\aggregator\Plugin\Block\AggregatorFeedBlock::__construct()

Constructs an AggregatorFeedBlock object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\aggregator\FeedStorageInterface $feed_storage: The entity storage for feeds.

\Drupal\aggregator\ItemStorageInterface $item_storage: The entity storage for feed items.

Overrides BlockPluginTrait::__construct

File

core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php, line 54

Class

AggregatorFeedBlock
Provides an 'Aggregator feed' block with the latest items from the feed.

Namespace

Drupal\aggregator\Plugin\Block

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, FeedStorageInterface $feed_storage, ItemStorageInterface $item_storage) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->feedStorage = $feed_storage;
  $this->itemStorage = $item_storage;
}