public function BlockBase::getConfig

Returns the configuration data for the block plugin.

@todo This doesn't belong here. Move this into a new base class in http://drupal.org/node/1764380. @todo This does not return a config object, so the name is confusing.

Return value

array The plugin configuration array from PluginBase::$configuration.

See also

\Drupal\Component\Plugin\PluginBase::$configuration

File

drupal/core/modules/block/lib/Drupal/block/BlockBase.php, line 63
Contains \Drupal\block\BlockBase.

Class

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

Namespace

Drupal\block

Code

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