public function FulfillmentMethodListBuilder::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_fulfillment/ src/ FulfillmentMethodListBuilder.php, line 151
Class
- FulfillmentMethodListBuilder
- Defines a class to build a listing of fulfillment method entities.
Namespace
Drupal\uc_fulfillmentCode
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this
->messenger()
->addMessage($this
->t('The configuration options have been saved.'));
}