You are here

public function ProjectRevisionDeleteForm::getConfirmText in Drupal PM (Project Management) 4.x

Returns a caption for the button that confirms the action.

Return value

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

Overrides ConfirmFormBase::getConfirmText

File

modules/pm_project/src/Form/ProjectRevisionDeleteForm.php, line 82

Class

ProjectRevisionDeleteForm
Provides a form for deleting a Project revision.

Namespace

Drupal\pm_project\Form

Code

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