|
@@ 412-417 (lines=6) @@
|
| 409 |
|
// entities are added or by one of the "Remove" buttons. Depending on that |
| 410 |
|
// we need to figure out where root of the widget is in the form structure |
| 411 |
|
// and use this information to return correct part of the form. |
| 412 |
|
if (!empty($trigger['#ajax']['event']) && $trigger['#ajax']['event'] == 'entity_browser_value_updated') { |
| 413 |
|
$parents = array_slice($trigger['#array_parents'], 0, -1); |
| 414 |
|
} |
| 415 |
|
elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], '_remove_')) { |
| 416 |
|
$parents = array_slice($trigger['#array_parents'], 0, -static::$deleteDepth); |
| 417 |
|
} |
| 418 |
|
|
| 419 |
|
return NestedArray::getValue($form, $parents); |
| 420 |
|
} |
|
@@ 655-662 (lines=8) @@
|
| 652 |
|
if ($is_relevant_submit) { |
| 653 |
|
// Submit was triggered by hidden "target_id" element when entities were |
| 654 |
|
// added via entity browser. |
| 655 |
|
if (!empty($trigger['#ajax']['event']) && $trigger['#ajax']['event'] == 'entity_browser_value_updated') { |
| 656 |
|
$parents = $trigger['#parents']; |
| 657 |
|
} |
| 658 |
|
// Submit was triggered by one of the "Remove" buttons. We need to walk |
| 659 |
|
// few levels up to read value of "target_id" element. |
| 660 |
|
elseif ($trigger['#type'] == 'submit' && strpos($trigger['#name'], $this->fieldDefinition->getName() . '_remove_') === 0) { |
| 661 |
|
$parents = array_merge(array_slice($trigger['#parents'], 0, -static::$deleteDepth), ['target_id']); |
| 662 |
|
} |
| 663 |
|
|
| 664 |
|
if (isset($parents) && $value = $form_state->getValue($parents)) { |
| 665 |
|
$entities = EntityBrowserElement::processEntityIds($value); |