You are here

public function MaestroTraceDeleteProcess::getCancelText in Maestro 8.2

Same name and namespace in other branches
  1. 3.x src/Form/MaestroTraceDeleteProcess.php \Drupal\maestro\Form\MaestroTraceDeleteProcess::getCancelText()

Returns a caption for the link which cancels the action.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form cancellation text.

Overrides ConfirmFormBase::getCancelText

File

src/Form/MaestroTraceDeleteProcess.php, line 74

Class

MaestroTraceDeleteProcess
The confirm form for deleting a process.

Namespace

Drupal\maestro\Form

Code

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