You are here

public function TranscodeJobDeleteForm::getConfirmText in Video 8.2

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/video_transcode/src/Form/TranscodeJobDeleteForm.php, line 35

Class

TranscodeJobDeleteForm
Provides a form for deleting a trnascode job entity.

Namespace

Drupal\video_transcode\Form

Code

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