You are here

public function ProcessPluginBase::setConfiguration in Paragraphs 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 ProcessPluginBase::setConfiguration()
ProcessPluginBase::__construct in src/Plugin/migrate/process/ProcessPluginBase.php
Constructs a \Drupal\Component\Plugin\PluginBase object.

File

src/Plugin/migrate/process/ProcessPluginBase.php, line 55

Class

ProcessPluginBase
Base class for Paragraphs process plugins.

Namespace

Drupal\paragraphs\Plugin\migrate\process

Code

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