use Symfony\Component\HttpFoundation\RedirectResponse;
function
myredirect($path) {
$response = new RedirectResponse($path, 302);
$response->send(); return;
}
// in Funktion:
return myredirect( \Drupal::url('dwquiz.artikelquiz') ); // Route
return myredirect( 'full-url-path' ); // Alternative
Neuen Kommentar schreiben