public function VocabularyResetForm::getConfirmText in Drupal 8
Same name and namespace in other branches
- 9 core/modules/taxonomy/src/Form/VocabularyResetForm.php \Drupal\taxonomy\Form\VocabularyResetForm::getConfirmText()
- 10 core/modules/taxonomy/src/Form/VocabularyResetForm.php \Drupal\taxonomy\Form\VocabularyResetForm::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.
Overrides EntityConfirmFormBase::getConfirmText
File
- core/
modules/ taxonomy/ src/ Form/ VocabularyResetForm.php, line 74
Class
- VocabularyResetForm
- Provides confirmation form for resetting a vocabulary to alphabetical order.
Namespace
Drupal\taxonomy\FormCode
public function getConfirmText() {
return $this
->t('Reset to alphabetical');
}