You are here

public function Redirect::content in JS Callback Handler 8.3

The content for this controller.

Return value

\Symfony\Component\HttpFoundation\RedirectResponse A redirect response.

1 string reference to 'Redirect::content'
js_callback_examples.routing.yml in js_callback_examples/js_callback_examples.routing.yml
js_callback_examples/js_callback_examples.routing.yml

File

js_callback_examples/src/Controller/Redirect.php, line 18

Class

Redirect
Default controller for the js_callback_examples module.

Namespace

Drupal\js_callback_examples\Controller

Code

public function content() {
  return $this
    ->redirect('js_callback_examples.redirect_result');
}