You are here

public function ViewsEFFieldset::getPluginDefinition in Views Exposed Form Fieldset 8

Gets the definition of the plugin implementation.

Return value

array The plugin definition, as returned by the discovery object used by the plugin manager.

Overrides PluginBase::getPluginDefinition

1 call to ViewsEFFieldset::getPluginDefinition()
ViewsEFFieldset::buildOptionsForm in src/Plugin/views/display_extender/ViewsEFFieldset.php
Provide a form to edit options for this plugin.

File

src/Plugin/views/display_extender/ViewsEFFieldset.php, line 357

Class

ViewsEFFieldset
Views EF Fieldset display extender plugin.

Namespace

Drupal\views_ef_fieldset\Plugin\views\display_extender

Code

public function getPluginDefinition() {
  $options = parent::defineOptions();
  $options['views_ef_fieldset'] = [
    'enabled' => [
      'default' => FALSE,
      'bool' => TRUE,
    ],
    'options' => [],
  ];
  return $options;
}