You are here

public function ExposedChartType::isExposed in Charts 5.0.x

Same name and namespace in other branches
  1. 8.4 src/Plugin/views/field/ExposedChartType.php \Drupal\charts\Plugin\views\field\ExposedChartType::isExposed()
  2. 8.3 src/Plugin/views/field/ExposedChartType.php \Drupal\charts\Plugin\views\field\ExposedChartType::isExposed()

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

Return value

bool

Overrides HandlerBase::isExposed

File

src/Plugin/views/field/ExposedChartType.php, line 28

Class

ExposedChartType
Provides a Views handler that exposes a Chart Type field.

Namespace

Drupal\charts\Plugin\views\field

Code

public function isExposed() {
  return TRUE;
}