You are here

public function ScheduledTransitionFromStateViewsField::__construct in Scheduled Transitions 2.x

Same name and namespace in other branches
  1. 8 src/Plugin/views/field/ScheduledTransitionFromStateViewsField.php \Drupal\scheduled_transitions\Plugin\views\field\ScheduledTransitionFromStateViewsField::__construct()

Constructs a \Drupal\comment\Plugin\views\field\NodeNewComments 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\Entity\EntityTypeManagerInterface $entityTypeManager: The entity type manager.

Overrides HandlerBase::__construct

File

src/Plugin/views/field/ScheduledTransitionFromStateViewsField.php, line 38

Class

ScheduledTransitionFromStateViewsField
Scheduled transition from state.

Namespace

Drupal\scheduled_transitions\Plugin\views\field

Code

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