public function TableConfigDeleteForm::getConfirmText in Data 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/ TableConfigDeleteForm.php, line 31
Class
- TableConfigDeleteForm
- Builds the form to delete Data Table entities.
Namespace
Drupal\data\FormCode
public function getConfirmText() {
return $this
->t('Delete');
}