wip: refactor to cards with individual participant forms

This commit is contained in:
Björn Fromme
2026-03-16 11:59:10 +01:00
parent 33e1aea80c
commit de8cbf6178
22 changed files with 866 additions and 212 deletions
@@ -39,8 +39,12 @@ interface ParticipantFieldHandlerInterface
/**
* Determines if this handler should process the field based on submitted participant data.
*
* @param array<string, mixed> $submittedData The submitted participant form data
* @param string $mode The booking mode (BookingDto::MODE_CREATE or MODE_EDIT)
* @param int $participantIndex The participant index being processed
*/
public function shouldProcess(array $submittedData, int $participantIndex): bool;
public function shouldProcess(array $submittedData, string $mode, int $participantIndex): bool;
/**
* Returns field state modifications that should be applied after processing.