You are here

public function MaestroEngineTaskInterface::getExecutableForm in Maestro 8.2

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

Gets the Maestro executable form for a task console.

Parameters

string $modal: Defines if the form is a modal form or not.

Drupal\maestro\Form\MaestroExecuteInteractive $parent: Parent class for using modal callbacks to the interactive form base if needed.

Return value

array Array Must return form declaration fields if this task is interactive or not.

14 methods override MaestroEngineTaskInterface::getExecutableForm()
MaestroAndTask::getExecutableForm in src/Plugin/EngineTasks/MaestroAndTask.php
Gets the Maestro executable form for a task console.
MaestroBatchFunctionTask::getExecutableForm in src/Plugin/EngineTasks/MaestroBatchFunctionTask.php
Gets the Maestro executable form for a task console.
MaestroContentTypeTask::getExecutableForm in src/Plugin/EngineTasks/MaestroContentTypeTask.php
Gets the Maestro executable form for a task console.
MaestroEndTask::getExecutableForm in src/Plugin/EngineTasks/MaestroEndTask.php
Gets the Maestro executable form for a task console.
MaestroIfTask::getExecutableForm in src/Plugin/EngineTasks/MaestroIfTask.php
Gets the Maestro executable form for a task console.

... See full list

File

src/MaestroEngineTaskInterface.php, line 48

Class

MaestroEngineTaskInterface
The Maestro Engine Task Interface.

Namespace

Drupal\maestro

Code

public function getExecutableForm($modal, MaestroExecuteInteractive $parent);