You are here

public function WebformContact::getInfo in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Element/WebformContact.php \Drupal\webform\Element\WebformContact::getInfo()

Returns the element properties for this element.

Return value

array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.

Overrides WebformCompositeBase::getInfo

File

src/Element/WebformContact.php, line 15

Class

WebformContact
Provides a webform element for a contact element.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  return parent::getInfo() + [
    '#theme' => 'webform_composite_contact',
  ];
}