You are here

public function ImportConfigDeleteForm::getConfirmText in Entity Share 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

modules/entity_share_client/src/Form/ImportConfigDeleteForm.php, line 33

Class

ImportConfigDeleteForm
Builds the form to delete Import config entities.

Namespace

Drupal\entity_share_client\Form

Code

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