public function FieldInheritanceDeleteForm::getConfirmText in Field Inheritance 2.0.x
Same name and namespace in other branches
- 8 src/Form/FieldInheritanceDeleteForm.php \Drupal\field_inheritance\Form\FieldInheritanceDeleteForm::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
- src/
Form/ FieldInheritanceDeleteForm.php, line 71
Class
- FieldInheritanceDeleteForm
- Builds the form to delete Field inheritance entities.
Namespace
Drupal\field_inheritance\FormCode
public function getConfirmText() {
return $this
->t('Delete');
}