Skip to content
Snippets Groups Projects
Commit 0d001d89 authored by Sara Cartee-Kennedy's avatar Sara Cartee-Kennedy Committed by Aaron Bauman
Browse files

Issue #3340664 by capysara: Support mapping all webform composite elements

parent 80941beb
No related branches found
No related tags found
No related merge requests found
...@@ -85,8 +85,16 @@ class WebformElements extends SalesforceMappingFieldPluginBase { ...@@ -85,8 +85,16 @@ class WebformElements extends SalesforceMappingFieldPluginBase {
else { else {
$value = $entity->getElementData($main_element_name); $value = $entity->getElementData($main_element_name);
if ($value && isset($element_parts[1])) { if ($value && isset($element_parts[1])) {
$value = $value[$element_parts[1]]; // Flatten the array if nested, e.g., webform custom composite.
if (is_array($value) && isset($value[0])) {
$flattened = array_reduce($value, 'array_merge', []);
$value = $flattened[$element_parts[1]];
}
else {
$value = $value[$element_parts[1]];
}
} }
return $value; return $value;
} }
} }
...@@ -138,7 +146,7 @@ class WebformElements extends SalesforceMappingFieldPluginBase { ...@@ -138,7 +146,7 @@ class WebformElements extends SalesforceMappingFieldPluginBase {
// Loop over every field on the webform. // Loop over every field on the webform.
foreach ($webform_elements as $element_id => $element) { foreach ($webform_elements as $element_id => $element) {
if (in_array($element['#type'], ['webform_address', 'webform_name'])) { if (!empty($element['#webform_composite_elements'])) {
$element = $webform->getElement($element_id, TRUE); $element = $webform->getElement($element_id, TRUE);
foreach ($element['#webform_composite_elements'] as $sub_element) { foreach ($element['#webform_composite_elements'] as $sub_element) {
$options[$sub_element['#webform_composite_key']] = $element['#title'] . ': ' . (string) $sub_element['#title']; $options[$sub_element['#webform_composite_key']] = $element['#title'] . ': ' . (string) $sub_element['#title'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment