Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Block.php

function Block::execute

The display block handler returns the structure necessary for a block.

Overrides DisplayPluginBase::execute

File

core/modules/views/src/Plugin/views/display/Block.php, line 130

Class

Block
The plugin that handles a block.

Namespace

Drupal\views\Plugin\views\display

Code

public function execute() {
    // Prior to this being called, the $view should already be set to this
    // display, and arguments should be set on the view.
    $element = $this->view
        ->render();
    if ($this->outputIsEmpty() && $this->getOption('block_hide_empty') && empty($this->view->style_plugin->definition['even empty'])) {
        return [];
    }
    else {
        return $element;
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal