public function ContentEntityConfirmFormBase::getConfirmText in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::getConfirmText()
- 9 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.
Overrides ConfirmFormInterface::getConfirmText
1 call to ContentEntityConfirmFormBase::getConfirmText()
- ContentEntityConfirmFormBase::actions in core/
lib/ Drupal/ Core/ Entity/ ContentEntityConfirmFormBase.php - Returns an array of supported actions for the current entity form.
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityConfirmFormBase.php, line 31
Class
- ContentEntityConfirmFormBase
- Provides a generic base class for an entity-based confirmation form.
Namespace
Drupal\Core\EntityCode
public function getConfirmText() {
return $this
->t('Confirm');
}