public function MeetingResultDeleteForm::getConfirmText in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/Form/MeetingResultDeleteForm.php \Drupal\opigno_moxtra\Form\MeetingResultDeleteForm::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.
Overrides ContentEntityConfirmFormBase::getConfirmText
File
- src/
Form/ MeetingResultDeleteForm.php, line 26
Class
- MeetingResultDeleteForm
- Provides a form for deleting a opigno_moxtra_meeting_result entity.
Namespace
Drupal\opigno_moxtra\FormCode
public function getConfirmText() {
return $this
->t('Delete');
}