You are here

public function IcalWizard::__construct in Views iCal 8

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.

Overrides PluginBase::__construct

File

src/Plugin/views/style/IcalWizard.php, line 61

Class

IcalWizard
Style plugin to render an iCal feed. This provides a style usable for Feed displays.

Namespace

Drupal\views_ical\Plugin\views\style

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityFieldManagerInterface $entity_field_manager, ViewsIcalHelperInterface $helper) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityFieldManager = $entity_field_manager;
  $this->helper = $helper;
  $this->helper
    ->setView($this->view);
}