You are here

public function DateRecurInterpreterEditForm::__construct in Recurring Dates Field 8.2

Same name and namespace in other branches
  1. 3.x src/Form/DateRecurInterpreterEditForm.php \Drupal\date_recur\Form\DateRecurInterpreterEditForm::__construct()
  2. 3.0.x src/Form/DateRecurInterpreterEditForm.php \Drupal\date_recur\Form\DateRecurInterpreterEditForm::__construct()
  3. 3.1.x src/Form/DateRecurInterpreterEditForm.php \Drupal\date_recur\Form\DateRecurInterpreterEditForm::__construct()

Creates an instance of WorkflowStateEditForm.

Parameters

\Drupal\Core\Plugin\PluginFormFactoryInterface $pluginFormFactory: The plugin form factory.

\Drupal\date_recur\Plugin\DateRecurInterpreterManagerInterface $dateRecurInterpreterPluginManager: Date recur interpreter plugin manager.

File

src/Form/DateRecurInterpreterEditForm.php, line 43

Class

DateRecurInterpreterEditForm
Edit form for date recur interpreter entities.

Namespace

Drupal\date_recur\Form

Code

public function __construct(PluginFormFactoryInterface $pluginFormFactory, DateRecurInterpreterManagerInterface $dateRecurInterpreterPluginManager) {
  $this->pluginFormFactory = $pluginFormFactory;
  $this->dateRecurInterpreterPluginManager = $dateRecurInterpreterPluginManager;
}