You are here

public function MaestroWebformTask::getTemplateBuilderCapabilities 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::getTemplateBuilderCapabilities()

Returns an array of consistenly keyed array elements that define what this task can do in the template builder. Elements are: edit, drawlineto, drawfalselineto, removelines, remove.

Overrides MaestroEngineTaskInterface::getTemplateBuilderCapabilities

File

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

Class

MaestroWebformTask
Maestro Webform Task Plugin.

Namespace

Drupal\maestro_webform\Plugin\EngineTasks

Code

public function getTemplateBuilderCapabilities() {

  /*
   * We're using the stock edit, draw lines, remove lines and removal task capabilities in the editor.
   */
  return [
    'edit',
    'drawlineto',
    'removelines',
    'remove',
  ];
}