You are here

public function FieldGroupAddForm::__construct in Field Group 8.3

FieldGroupAddForm constructor.

Parameters

\Drupal\field_group\FieldGroupFormatterPluginManager $fieldGroupFormatterPluginManager: The field group formatter plugin manager.

\Drupal\Core\Messenger\MessengerInterface $messenger: The messenger.

File

src/Form/FieldGroupAddForm.php, line 83

Class

FieldGroupAddForm
Provides a form for adding a fieldgroup to a bundle.

Namespace

Drupal\field_group\Form

Code

public function __construct(FieldGroupFormatterPluginManager $fieldGroupFormatterPluginManager, MessengerInterface $messenger) {
  $this->fieldGroupFormatterPluginManager = $fieldGroupFormatterPluginManager;
  $this->messenger = $messenger;
}