You are here

protected function ExposedChartType::defineOptions 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::defineOptions()
  2. 8.3 src/Plugin/views/field/ExposedChartType.php \Drupal\charts\Plugin\views\field\ExposedChartType::defineOptions()

Information about options for all kinds of purposes will be held here.


'option_name' => array(
 - 'default' => default value,
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 ),

Return value

array Returns the options of this handler/plugin.

Overrides FieldPluginBase::defineOptions

File

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

Class

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

Namespace

Drupal\charts\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['chart_types'] = [
    'default' => [],
  ];
  $options['exposed_select_type'] = [
    'default' => 'checkboxes',
  ];
  return $options;
}