public function ContentEntityConfirmFormBase::getCancelText in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::getCancelText()
Returns a caption for the link which cancels the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form cancellation text.
Overrides ConfirmFormInterface::getCancelText
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityConfirmFormBase.php, line 38
Class
- ContentEntityConfirmFormBase
- Provides a generic base class for an entity-based confirmation form.
Namespace
Drupal\Core\EntityCode
public function getCancelText() {
return $this
->t('Cancel');
}