You are here

public function EventDeleteForm::getConfirmText in Booking and Availability Management Tools for Drupal 8

Returns a caption for the button that confirms the action.

Return value

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

Overrides ContentEntityConfirmFormBase::getConfirmText

File

modules/bat_event/src/Entity/Form/EventDeleteForm.php, line 38
Contains \Drupal\bat_event\Entity\Form\EventDeleteForm.

Class

EventDeleteForm
Provides a form for deleting Event entities.

Namespace

Drupal\bat_event\Entity\Form

Code

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