You are here

public function HandlerBase::canExpose in Drupal 9

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

Determine if a handler can be exposed.

2 methods override HandlerBase::canExpose()
FilterPluginBase::canExpose in core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
Determine if a filter can be exposed.
SortPluginBase::canExpose in core/modules/views/src/Plugin/views/sort/SortPluginBase.php
Determine if a sort can be exposed.

File

core/modules/views/src/Plugin/views/HandlerBase.php, line 388

Class

HandlerBase
Base class for Views handler plugins.

Namespace

Drupal\views\Plugin\views

Code

public function canExpose() {
  return FALSE;
}