public function WebformTableRow::getInfo in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Element/WebformTableRow.php \Drupal\webform\Element\WebformTableRow::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 ElementInterface::getInfo
File
- src/
Element/ WebformTableRow.php, line 19
Class
- WebformTableRow
- Provides a render element for webform table row.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#optional' => FALSE,
'#process' => [
[
$class,
'processTableRow',
],
],
'#pre_render' => [],
];
}