public function TextFileDeleteForm::getConfirmText in Apache Solr Config Generator 8
Returns a caption for the button that confirms the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.
Overrides EntityConfirmFormBase::getConfirmText
File
- src/
Form/ TextFileDeleteForm.php, line 35 - Contains Drupal\apachesolr_confgen\Form\TextFileDeleteForm.
Class
- TextFileDeleteForm
- Builds the form to delete a TextFile.
Namespace
Drupal\apachesolr_confgen\FormCode
public function getConfirmText() {
return $this
->t('Delete');
}