You are here

public function MaestroTraceDeleteTask::getDescription in Maestro 8.2

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

Returns additional text to display as a description.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form description.

Overrides ConfirmFormBase::getDescription

File

src/Form/MaestroTraceDeleteTask.php, line 54

Class

MaestroTraceDeleteTask
The confirm form for deleting a task.

Namespace

Drupal\maestro\Form

Code

public function getDescription() {
  return $this
    ->t('This will remove the tasks from the queue!  This may cause damage to the executing workflow!');
}