public function DisplayPluginBase::usesExposedFormInBlock in Views (for Drupal 7) 8.3
Check to see if the display can put the exposed formin 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.
2 calls to DisplayPluginBase::usesExposedFormInBlock()
- DisplayPluginBase::getSpecialBlocks in lib/
Drupal/ views/ Plugin/ views/ display/ DisplayPluginBase.php - Provide the block system with any exposed widget blocks for this display.
- DisplayPluginBase::optionsSummary in lib/
Drupal/ views/ Plugin/ views/ display/ DisplayPluginBase.php - Provide the default summary for options in the views UI.
File
- lib/
Drupal/ views/ Plugin/ views/ display/ DisplayPluginBase.php, line 658 - Definition of Drupal\views\Plugin\views\display\DisplayPluginBase.
Class
- DisplayPluginBase
- The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.
Namespace
Drupal\views\Plugin\views\displayCode
public function usesExposedFormInBlock() {
return $this
->hasPath();
}