public function BrightcoveAPIClientDeleteForm::getConfirmText in Brightcove Video Connect 8
Same name and namespace in other branches
- 8.2 src/Form/BrightcoveAPIClientDeleteForm.php \Drupal\brightcove\Form\BrightcoveAPIClientDeleteForm::getConfirmText()
- 3.x src/Form/BrightcoveAPIClientDeleteForm.php \Drupal\brightcove\Form\BrightcoveAPIClientDeleteForm::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.
Overrides EntityConfirmFormBase::getConfirmText
File
- src/
Form/ BrightcoveAPIClientDeleteForm.php, line 147
Class
- BrightcoveAPIClientDeleteForm
- Builds the form to delete Brightcove API Client entities.
Namespace
Drupal\brightcove\FormCode
public function getConfirmText() {
return $this
->t('Delete');
}