You are here

public function WebformInterface::getSubmissionForm in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/WebformInterface.php \Drupal\webform\WebformInterface::getSubmissionForm()

Get webform submission webform.

Parameters

array $values: (optional) An array of values to set, keyed by property name.

string $operation: (optional) The operation identifying the webform submission form variation to be returned. Defaults to 'add'. This is typically used in routing.

Return value

array A render array representing a webform submission webform.

1 method overrides WebformInterface::getSubmissionForm()
Webform::getSubmissionForm in src/Entity/Webform.php
Get webform submission webform.

File

src/WebformInterface.php, line 661

Class

WebformInterface
Provides an interface defining a webform entity.

Namespace

Drupal\webform

Code

public function getSubmissionForm(array $values = [], $operation = 'add');