You are here

public function ContentEntityConfirmFormBase::getCancelText in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\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 43
Contains \Drupal\Core\Entity\ContentEntityConfirmFormBase.

Class

ContentEntityConfirmFormBase
Provides a generic base class for an entity-based confirmation form.

Namespace

Drupal\Core\Entity

Code

public function getCancelText() {
  return $this
    ->t('Cancel');
}