I want to call a function right before the registration process starts in order to check some values from the registration form. In Shopware 5 I would use a predispatch event for that. How to do that in Shopware 6?
This is the method into which the form posts the registration data to:
/**
* @Route("/account/register", name="frontend.account.register.save", methods={"POST"})
* @Captcha
*/
public function register(Request $request, RequestDataBag $data, SalesChannelContext $context): Response
{
Check the class Shopware\Core\Checkout\Customer\CustomerEvents. MAPPING_REGISTER_CUSTOMER should be the one you are looking for.
The subscriber is registered in services.xml like this, similar to Shopware 5, except the ID is the FQDN of the subscriber class: