public VocabularyResetForm::getDescription()
Returns additional text to display as a description.
Return value
string The form description.
Overrides EntityConfirmFormBase::getDescription
File
- core/modules/taxonomy/src/Form/VocabularyResetForm.php, line 65
Class
- VocabularyResetForm
- Provides confirmation form for resetting a vocabulary to alphabetical order.
Namespace
Drupal\taxonomy\Form
Code
1 2 3 | public function getDescription() { return $this ->t( 'Resetting a vocabulary will discard all custom ordering and sort items alphabetically.' ); } |
Please login to continue.