You are here

public function ViewsBlock::getConfiguration in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/Block/ViewsBlock.php \Drupal\views\Plugin\Block\ViewsBlock::getConfiguration()

Overrides BlockPluginTrait::getConfiguration

File

core/modules/views/src/Plugin/Block/ViewsBlock.php, line 83

Class

ViewsBlock
Provides a generic Views block.

Namespace

Drupal\views\Plugin\Block

Code

public function getConfiguration() {
  $configuration = parent::getConfiguration();

  // Set the label to the static title configured in the view.
  if (!empty($configuration['views_label'])) {
    $configuration['label'] = $configuration['views_label'];
  }
  return $configuration;
}