You are here

public function BoardTypeDeleteForm::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 EntityConfirmFormBase::getConfirmText

File

modules/pm_board/src/Form/BoardTypeDeleteForm.php, line 31

Class

BoardTypeDeleteForm
Builds the form to delete Board type entities.

Namespace

Drupal\pm_board\Form

Code

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