You are here

public function MeetingDeleteForm::getConfirmText in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/Form/MeetingDeleteForm.php \Drupal\opigno_moxtra\Form\MeetingDeleteForm::getConfirmText()

Returns a caption for the button that confirms the action.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.

Overrides ContentEntityConfirmFormBase::getConfirmText

1 call to MeetingDeleteForm::getConfirmText()
MeetingDeleteForm::actions in src/Form/MeetingDeleteForm.php
Returns an array of supported actions for the current entity form.

File

src/Form/MeetingDeleteForm.php, line 95

Class

MeetingDeleteForm
Provides a form for deleting a opigno_moxtra_meeting entity.

Namespace

Drupal\opigno_moxtra\Form

Code

public function getConfirmText() {
  return $this
    ->t('Delete');
}