You are here

public function SalesforceMappingList::submitForm in Salesforce Suite 5.0.x

Same name and namespace in other branches
  1. 8.4 modules/salesforce_mapping_ui/src/SalesforceMappingList.php \Drupal\salesforce_mapping_ui\SalesforceMappingList::submitForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides DraggableListBuilder::submitForm

File

modules/salesforce_mapping_ui/src/SalesforceMappingList.php, line 63

Class

SalesforceMappingList
Defines the filter format list controller.

Namespace

Drupal\salesforce_mapping_ui

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  parent::submitForm($form, $form_state);
  $this
    ->messenger()
    ->addStatus($this
    ->t('The configuration options have been saved.'));
}