You are here

public function EntityQueueHandlerBase::setConfiguration in Entityqueue 8

Sets the configuration for this plugin instance.

Parameters

array $configuration: An associative array containing the plugin's configuration.

Overrides ConfigurableInterface::setConfiguration

1 call to EntityQueueHandlerBase::setConfiguration()
EntityQueueHandlerBase::__construct in src/EntityQueueHandlerBase.php
Constructs a \Drupal\Component\Plugin\PluginBase object.

File

src/EntityQueueHandlerBase.php, line 45

Class

EntityQueueHandlerBase
Base class for EntityQueueHandler plugins.

Namespace

Drupal\entityqueue

Code

public function setConfiguration(array $configuration) {
  $this->configuration = NestedArray::mergeDeep($this
    ->defaultConfiguration(), $configuration);
}