public function YamlFormCompositeBase::getInfo in YAML Form 8
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
1 call to YamlFormCompositeBase::getInfo()
- YamlFormLocation::getInfo in src/
Element/ YamlFormLocation.php - Returns the element properties for this element.
1 method overrides YamlFormCompositeBase::getInfo()
- YamlFormLocation::getInfo in src/
Element/ YamlFormLocation.php - Returns the element properties for this element.
File
- src/
Element/ YamlFormCompositeBase.php, line 20
Class
- YamlFormCompositeBase
- Provides an base composite form element.
Namespace
Drupal\yamlform\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#input' => TRUE,
'#process' => [
[
$class,
'processYamlFormComposite',
],
[
$class,
'processAjaxForm',
],
],
'#pre_render' => [
[
$class,
'preRenderCompositeFormElement',
],
],
'#theme' => str_replace('yamlform_', 'yamlform_composite_', $this
->getPluginId()),
'#theme_wrappers' => [
'container',
],
'#title_display' => 'invisible',
'#required' => FALSE,
'#flexbox' => TRUE,
];
}