You are here

public function SendEmailAction::submitConfigurationForm in CRM Core 8.3

Same name and namespace in other branches
  1. 8 modules/crm_core_contact/src/Plugin/Action/SendEmailAction.php \Drupal\crm_core_contact\Plugin\Action\SendEmailAction::submitConfigurationForm()
  2. 8.2 modules/crm_core_contact/src/Plugin/Action/SendEmailAction.php \Drupal\crm_core_contact\Plugin\Action\SendEmailAction::submitConfigurationForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the plugin form as built by static::buildConfigurationForm().

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Overrides PluginFormInterface::submitConfigurationForm

File

modules/crm_core_contact/src/Plugin/Action/SendEmailAction.php, line 146

Class

SendEmailAction
Sends e-mail to contacts.

Namespace

Drupal\crm_core_contact\Plugin\Action

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $this->configuration['subject'] = $form_state
    ->getValue('subject');
  $this->configuration['message'] = $form_state
    ->getValue('message');
}