You are here

public function MaestroInteractiveExampleTask::description in Maestro 8.2

Same name and namespace in other branches
  1. 3.x modules/examples/maestro_interactive_task_plugin_example/src/Plugin/EngineTasks/MaestroInteractiveExampleTask.php \Drupal\maestro_interactive_task_plugin_example\Plugin\EngineTasks\MaestroInteractiveExampleTask::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_interactive_task_plugin_example/src/Plugin/EngineTasks/MaestroInteractiveExampleTask.php, line 73

Class

MaestroInteractiveExampleTask
Maestro Interactive Example Task Plugin.

Namespace

Drupal\maestro_interactive_task_plugin_example\Plugin\EngineTasks

Code

public function description() {

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