You are here

public function ShippingQuoteMethodListBuilder::submitForm in Ubercart 8.4

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

shipping/uc_quote/src/ShippingQuoteMethodListBuilder.php, line 135

Class

ShippingQuoteMethodListBuilder
Provides a listing of shipping quote method entities.

Namespace

Drupal\uc_quote

Code

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