You are here

public function MaestroTraceDeleteProcess::getQuestion in Maestro 8.2

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

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides ConfirmFormInterface::getQuestion

File

src/Form/MaestroTraceDeleteProcess.php, line 46

Class

MaestroTraceDeleteProcess
The confirm form for deleting a process.

Namespace

Drupal\maestro\Form

Code

public function getQuestion() {
  return t('Do you want to delete this instance (Process: %pid) of the workflow: %template?', [
    '%pid' => $this->processID,
    '%template' => $this->templateName,
  ]);
}