You are here

public function VeflBasic::__construct in Views exposed form layout 8.3

Constructs a PluginBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\vefl\Vefl $vefl: The vefl layout helper.

Overrides PluginBase::__construct

File

src/Plugin/views/exposed_form/VeflBasic.php, line 42

Class

VeflBasic
Exposed form plugin that provides a basic exposed form with layout.

Namespace

Drupal\vefl\Plugin\views\exposed_form

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, Vefl $vefl) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->vefl = $vefl;
}