You are here

public function Calendar::__construct in Calendar 8

Same name in this branch
  1. 8 src/Plugin/views/style/Calendar.php \Drupal\calendar\Plugin\views\style\Calendar::__construct()
  2. 8 src/Plugin/views/row/Calendar.php \Drupal\calendar\Plugin\views\row\Calendar::__construct()

Constructs a Calendar row plugin 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\Core\Datetime\DateFormatter $date_formatter: The date formatter service.

\Drupal\Core\Entity\EntityFieldManagerInterface $field_manager: The entity field manager service.

Overrides PluginBase::__construct

File

src/Plugin/views/row/Calendar.php, line 111

Class

Calendar
Plugin which creates a view on the resulting object and formats it as a Calendar entity.

Namespace

Drupal\calendar\Plugin\views\row

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, DateFormatter $date_formatter, EntityFieldManagerInterface $field_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->dateFormatter = $date_formatter;
  $this->fieldManager = $field_manager;
}