You are here

public function BlazyListBuilderBase::submitForm in Blazy 8.2

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

blazy_ui/src/Controller/BlazyListBuilderBase.php, line 47

Class

BlazyListBuilderBase
Provides a listing of entity optionsets.

Namespace

Drupal\blazy_ui\Controller

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  parent::submitForm($form, $form_state);
  $this
    ->messenger()
    ->addMessage($this
    ->t('The optionsets order has been updated.'));
}