You are here

public function MaestroWebformTask::isInteractive in Maestro 8.2

Same name and namespace in other branches
  1. 3.x modules/maestro_webform/src/Plugin/EngineTasks/MaestroWebformTask.php \Drupal\maestro_webform\Plugin\EngineTasks\MaestroWebformTask::isInteractive()

Returns TRUE or FALSE to denote if this task has an interactive interface that needs to be shown in the Task Console and for any other requirements of the task.

Overrides MaestroEngineTaskInterface::isInteractive

File

modules/maestro_webform/src/Plugin/EngineTasks/MaestroWebformTask.php, line 53

Class

MaestroWebformTask
Maestro Webform Task Plugin.

Namespace

Drupal\maestro_webform\Plugin\EngineTasks

Code

public function isInteractive() {

  /*
   * Webform Task type is interactive allowing the end user to interact with the Maestro Task Console..
   */
  return TRUE;
}