public function Block::execute in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/display/Block.php \Drupal\views\Plugin\views\display\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 128
Class
- Block
- The plugin that handles a block.
Namespace
Drupal\views\Plugin\views\displayCode
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;
}
}