You are here

public function MaestroNonInteractiveExampleTask::description in Maestro 8.2

Same name and namespace in other branches
  1. 3.x modules/examples/maestro_noninteractive_task_plugin_example/src/Plugin/EngineTasks/MaestroNonInteractiveExampleTask.php \Drupal\maestro_noninteractive_task_plugin_example\Plugin\EngineTasks\MaestroNonInteractiveExampleTask::description()

Longer description. This generally follows the short Description but can be used to be more descriptive if you wish to surface this description in a UI element.

Overrides MaestroEngineTaskInterface::description

File

modules/examples/maestro_noninteractive_task_plugin_example/src/Plugin/EngineTasks/MaestroNonInteractiveExampleTask.php, line 73

Class

MaestroNonInteractiveExampleTask
Maestro Non Interactive Example Task Plugin.

Namespace

Drupal\maestro_noninteractive_task_plugin_example\Plugin\EngineTasks

Code

public function description() {

  // Same as shortDescription, but just longer!  (if need be obviously)
  return $this
    ->t('Non Interactive Example Task.');
}