You are here

public function ViewsBlockBase::defaultConfiguration in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/Block/ViewsBlockBase.php \Drupal\views\Plugin\Block\ViewsBlockBase::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides BlockBase::defaultConfiguration

1 call to ViewsBlockBase::defaultConfiguration()
ViewsBlock::defaultConfiguration in core/modules/views/src/Plugin/Block/ViewsBlock.php
Gets default configuration for this plugin.
1 method overrides ViewsBlockBase::defaultConfiguration()
ViewsBlock::defaultConfiguration in core/modules/views/src/Plugin/Block/ViewsBlock.php
Gets default configuration for this plugin.

File

core/modules/views/src/Plugin/Block/ViewsBlockBase.php, line 109
Contains \Drupal\views\Plugin\Block\ViewsBlockBase.

Class

ViewsBlockBase
Base class for Views block plugins.

Namespace

Drupal\views\Plugin\Block

Code

public function defaultConfiguration() {
  return array(
    'views_label' => '',
  );
}