You are here

public function VocabularyResetForm::getConfirmText in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/taxonomy/src/Form/VocabularyResetForm.php \Drupal\taxonomy\Form\VocabularyResetForm::getConfirmText()

Returns a caption for the button that confirms the action.

Return value

string The form confirmation text.

Overrides EntityConfirmFormBase::getConfirmText

File

core/modules/taxonomy/src/Form/VocabularyResetForm.php, line 77
Contains \Drupal\taxonomy\Form\VocabularyResetForm.

Class

VocabularyResetForm
Provides confirmation form for resetting a vocabulary to alphabetical order.

Namespace

Drupal\taxonomy\Form

Code

public function getConfirmText() {
  return $this
    ->t('Reset to alphabetical');
}