function RoleListBuilder::submitForm

Same name and namespace in other branches
  1. 9 core/modules/user/src/RoleListBuilder.php \Drupal\user\RoleListBuilder::submitForm()
  2. 8.9.x core/modules/user/src/RoleListBuilder.php \Drupal\user\RoleListBuilder::submitForm()
  3. 11.x core/modules/user/src/RoleListBuilder.php \Drupal\user\RoleListBuilder::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 DraggableListBuilderTrait::submitForm

File

core/modules/user/src/RoleListBuilder.php, line 99

Class

RoleListBuilder
Defines a class to build a listing of user role entities.

Namespace

Drupal\user

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.