public function DisplayPluginBase::usesExposedFormInBlock in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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.
File
- core/
modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php, line 683 - Contains \Drupal\views\Plugin\views\display\DisplayPluginBase.
Class
- DisplayPluginBase
- Base class for views display plugins.
Namespace
Drupal\views\Plugin\views\displayCode
public function usesExposedFormInBlock() {
return $this
->hasPath();
}