if (null !==
$this->clickedButton
) { continue;
} if ($child instanceof ClickableInterface &&
$child->
isClicked()) { $this->clickedButton =
$child;
continue;
} if (method_exists($child, 'getClickedButton'
) && null !==
$child->
getClickedButton()) { $this->clickedButton =
$child->
getClickedButton();
} } } $this->extraData =
$submittedData;
} // Forms that inherit their parents' data also are not processed,
// because then it would be too difficult to merge the changes in
// the child and the parent form. Instead, the parent form also takes