You are here

public function MappingDeleteForm::getConfirmText in GatherContent 8.3

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/MappingDeleteForm.php, line 31

Class

MappingDeleteForm
Builds the form to delete Mapping entities.

Namespace

Drupal\gathercontent\Form

Code

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