You are here

public function OrganizationTypeDeleteForm::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_organization/src/Form/OrganizationTypeDeleteForm.php, line 31

Class

OrganizationTypeDeleteForm
Builds the form to delete Organization type entities.

Namespace

Drupal\pm_organization\Form

Code

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