t('Are you sure you want to do this?'); } /** * {@inheritdoc} */ public function getCancelUrl(): Url { return new Url('system.admin_config'); } /** * {@inheritdoc} */ public function submitForm(array &$form, FormStateInterface $form_state): void { // @todo Place your code here. $this->messenger()->addStatus($this->t('Done!')); $form_state->setRedirectUrl(new Url('system.admin_config')); } }