You are here

public function FileDeleteForm::getConfirmText in Ubercart 8.4

Returns a caption for the button that confirms the action.

Return value

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

Overrides ConfirmFormBase::getConfirmText

File

uc_file/src/Form/FileDeleteForm.php, line 32

Class

FileDeleteForm
Performs delete file action.

Namespace

Drupal\uc_file\Form

Code

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