You are here

public function WebformSame::getInfo in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Element/WebformSame.php \Drupal\webform\Element\WebformSame::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 Checkbox::getInfo

File

src/Element/WebformSame.php, line 19

Class

WebformSame
Provides a webform element for managing same as.

Namespace

Drupal\webform\Element

Code

public function getInfo() {
  return parent::getInfo() + [
    '#source' => NULL,
    '#destination' => NULL,
    '#destination_state' => 'visible',
  ];
}