You are here

public function RecipientTypeInterface::buildConfigurationForm in Workbench Email 2.x

Same name and namespace in other branches
  1. 8 src/Plugin/RecipientTypeInterface.php \Drupal\workbench_email\Plugin\RecipientTypeInterface::buildConfigurationForm()

Generates a recipient types's settings form.

Parameters

array $form: A minimally prepopulated form array.

\Drupal\Core\Form\FormStateInterface $form_state: The state of the (entire) configuration form.

Return value

array The $form array with additional form elements for the settings of this recipient type. The submitted form values should match $this->settings.

Overrides PluginFormInterface::buildConfigurationForm

1 method overrides RecipientTypeInterface::buildConfigurationForm()
RecipientTypeBase::buildConfigurationForm in src/Plugin/RecipientTypeBase.php
Generates a recipient types's settings form.

File

src/Plugin/RecipientTypeInterface.php, line 54

Class

RecipientTypeInterface
Defines the interface for Recipient type plugins.

Namespace

Drupal\workbench_email\Plugin

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state);