public function HandlerBase::isExposed

Determine if this item is 'exposed', meaning it provides form elements to let users modify the view.

Return value

TRUE/FALSE

2 calls to HandlerBase::isExposed()
FilterPluginBase::can_build_group in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php
Determine if a filter can be converted into a group. Only exposed filters with operators available can be converted into groups.
FilterPluginBase::isAGroup in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php
Returns TRUE if the exposed filter works like a grouped filter.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/HandlerBase.php, line 557
Definition of Drupal\views\Plugin\views\HandlerBase.

Class

HandlerBase

Namespace

Drupal\views\Plugin\views

Code

public function isExposed() {
  return !empty($this->options['exposed']);
}