public ContentEntityConfirmFormBase::getCancelText()
Returns a caption for the link which cancels the action.
Return value
string 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\Entity
Code
1 2 3 | public function getCancelText() { return $this ->t( 'Cancel' ); } |
Please login to continue.