You are here

public function BlockBase::getConfiguration in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Block/BlockBase.php \Drupal\Core\Block\BlockBase::getConfiguration()

Gets this plugin's configuration.

Return value

array An array of this plugin's configuration.

Overrides ConfigurablePluginInterface::getConfiguration

1 call to BlockBase::getConfiguration()
ViewsBlock::getConfiguration in core/modules/views/src/Plugin/Block/ViewsBlock.php
Gets this plugin's configuration.
1 method overrides BlockBase::getConfiguration()
ViewsBlock::getConfiguration in core/modules/views/src/Plugin/Block/ViewsBlock.php
Gets this plugin's configuration.

File

core/lib/Drupal/Core/Block/BlockBase.php, line 66
Contains \Drupal\Core\Block\BlockBase.

Class

BlockBase
Defines a base block implementation that most blocks plugins will extend.

Namespace

Drupal\Core\Block

Code

public function getConfiguration() {
  return $this->configuration;
}