You are here

public function WebformAddressLoqate::getInfo in Loqate 2.x

Same name and namespace in other branches
  1. 8 modules/pca_webform/src/Element/WebformAddressLoqate.php \Drupal\pca_webform\Element\WebformAddressLoqate::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

modules/pca_webform/src/Element/WebformAddressLoqate.php, line 21

Class

WebformAddressLoqate
Provides a Webform element for an address element.

Namespace

Drupal\pca_webform\Element

Code

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