You are here

public function EntityExportCsvDeleteForm::getConfirmText in Entity Export CSV 8

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

Class

EntityExportCsvDeleteForm
Builds the form to delete Entity export csv entities.

Namespace

Drupal\entity_export_csv\Form

Code

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