You are here

public function DefaultProcessor::getConfiguration in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/aggregator/src/Plugin/aggregator/processor/DefaultProcessor.php \Drupal\aggregator\Plugin\aggregator\processor\DefaultProcessor::getConfiguration()

Gets this plugin's configuration.

Return value

array An array of this plugin's configuration.

Overrides ConfigurableInterface::getConfiguration

1 call to DefaultProcessor::getConfiguration()
DefaultProcessor::__construct in core/modules/aggregator/src/Plugin/aggregator/processor/DefaultProcessor.php
Constructs a DefaultProcessor object.

File

core/modules/aggregator/src/Plugin/aggregator/processor/DefaultProcessor.php, line 275

Class

DefaultProcessor
Defines a default processor implementation.

Namespace

Drupal\aggregator\Plugin\aggregator\processor

Code

public function getConfiguration() {
  return $this->configFactory
    ->get('aggregator.settings')
    ->get();
}