We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6367b7 commit 859bfddCopy full SHA for 859bfdd
src/AddressFinderField.php
@@ -369,6 +369,26 @@ public function saveInto(DataObjectInterface $record)
369
}
370
371
372
+ /**
373
+ * @return array
374
+ */
375
+ public function dataValue()
376
+ {
377
+ $data = [
378
+ 'Address' => $this->addressField->Value(),
379
+ ];
380
+
381
+ if ($this->getShowManualFields()) {
382
+ foreach ($this->getManualFields() as $field) {
383
+ $fieldName = $this->getNestedFieldName($field);
384
+ $data[$fieldName] = $field->Value();
385
+ }
386
387
388
+ return $data;
389
390
391
392
/**
393
* Returns the actual name of a child field without the prefix of this
394
* field.
0 commit comments