You are here

public function WebformElementInterface::form in Webform 8.5

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

Gets the actual configuration webform array to be built.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array An associative array contain the element's configuration webform without any default values.

1 method overrides WebformElementInterface::form()
WebformElementBase::form in src/Plugin/WebformElementBase.php
Gets the actual configuration webform array to be built.

File

src/Plugin/WebformElementInterface.php, line 905

Class

WebformElementInterface
Defines the interface for webform elements.

Namespace

Drupal\webform\Plugin

Code

public function form(array $form, FormStateInterface $form_state);