You are here

public function DisplayPluginBase::usesExposedFormInBlock in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/display/DisplayPluginBase.php \Drupal\views\Plugin\views\display\DisplayPluginBase::usesExposedFormInBlock()

Checks to see if the display can put the exposed form in a block.

By default, displays that do not have a path cannot disconnect the exposed form and put it in a block, because the form has no place to go and Views really wants the forms to go to a specific page.

Overrides DisplayPluginInterface::usesExposedFormInBlock

2 calls to DisplayPluginBase::usesExposedFormInBlock()
DisplayPluginBase::getSpecialBlocks in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Provides the block system with any exposed widget blocks for this display.
DisplayPluginBase::optionsSummary in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Provides the default summary for options in the views UI.
1 method overrides DisplayPluginBase::usesExposedFormInBlock()
Block::usesExposedFormInBlock in core/modules/views/src/Plugin/views/display/Block.php
Checks to see if the display can put the exposed form in a block.

File

core/modules/views/src/Plugin/views/display/DisplayPluginBase.php, line 683

Class

DisplayPluginBase
Base class for views display plugins.

Namespace

Drupal\views\Plugin\views\display

Code

public function usesExposedFormInBlock() {
  return $this
    ->hasPath();
}