You are here

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

The constructor.

Parameters

array $configuration: Site configuration.

string $plugin_id: Plugin id.

mixed $plugin_definition: Plugin definition.

\Drupal\Core\Render\RendererInterface $render: The render.

Overrides PluginBase::__construct

File

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

Class

ViewsEFFieldset
Views EF Fieldset display extender plugin.

Namespace

Drupal\views_ef_fieldset\Plugin\views\display_extender

Code

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