You are here

public function OverviewTerms::submitReset in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Form/OverviewTerms.php \Drupal\taxonomy\Form\OverviewTerms::submitReset()

Redirects to confirmation form for the reset action.

File

core/modules/taxonomy/src/Form/OverviewTerms.php, line 595

Class

OverviewTerms
Provides terms overview form for a taxonomy vocabulary.

Namespace

Drupal\taxonomy\Form

Code

public function submitReset(array &$form, FormStateInterface $form_state) {

  /** @var \Drupal\taxonomy\VocabularyInterface $vocabulary */
  $vocabulary = $form_state
    ->get([
    'taxonomy',
    'vocabulary',
  ]);
  $form_state
    ->setRedirectUrl($vocabulary
    ->toUrl('reset-form'));
}