public function WebformCheckboxValue::getInfo in Webform 8.5
Same name and namespace in other branches
- 6.x src/Element/WebformCheckboxValue.php \Drupal\webform\Element\WebformCheckboxValue::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/ WebformCheckboxValue.php, line 20
Class
- WebformCheckboxValue
- Provides a webform element for checking a box before entering a value.
Namespace
Drupal\webform\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#input' => TRUE,
'#process' => [
[
$class,
'processWebformCheckboxValue',
],
[
$class,
'processAjaxForm',
],
],
'#theme_wrappers' => [
'form_element',
],
'#states' => [],
];
}