I have a subscriber to the event
'Shopware_Modules_Admin_SaveRegister_Successful'
and after certain actions, I want to perform a redirect in the end, but the $args
object does not have a subject which means that I cannot call the $controller = $args->getSubject();
on it and perform a redirect.
Is there another way to perform a redirect inside of the callback function of this event? 'Shopware_Modules_Admin_SaveRegister_Successful' => 'onRegisterSuccessful'
public function onRegisterSuccessful($args){
$controller = $args->getSubject();
$controller->redirect(
array(
'controller' => 'profile',
'action' => 'verify',
'name' => $name
)
);
}
Your option would be to go a bit higher and register an controller's
postDispatch
event. There you can redirect.