public function BlockBase::setConfiguration in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Block/BlockBase.php \Drupal\Core\Block\BlockBase::setConfiguration()
Sets the configuration for this plugin instance.
Parameters
array $configuration: An associative array containing the plugin's configuration.
Overrides ConfigurablePluginInterface::setConfiguration
1 call to BlockBase::setConfiguration()
- BlockBase::__construct in core/
lib/ Drupal/ Core/ Block/ BlockBase.php - Overrides \Drupal\Component\Plugin\PluginBase::__construct().
File
- core/
lib/ Drupal/ Core/ Block/ BlockBase.php, line 73 - Contains \Drupal\Core\Block\BlockBase.
Class
- BlockBase
- Defines a base block implementation that most blocks plugins will extend.
Namespace
Drupal\Core\BlockCode
public function setConfiguration(array $configuration) {
$this->configuration = NestedArray::mergeDeep($this
->baseConfigurationDefaults(), $this
->defaultConfiguration(), $configuration);
}