FilterFormatListBuilder::submitForm

public FilterFormatListBuilder::submitForm(array &$form, FormStateInterface $form_state)

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

core/modules/filter/src/FilterFormatListBuilder.php, line 149

Class

FilterFormatListBuilder
Defines a class to build a listing of filter format entities.

Namespace

Drupal\filter

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  parent::submitForm($form, $form_state);

  filter_formats_reset();
  drupal_set_message($this->t('The text format ordering has been saved.'));
}
doc_Drupal
2016-10-29 09:14:49
Comments
Leave a Comment

Please login to continue.