function Test::metaRefresh

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::metaRefresh()
  2. 10 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::metaRefresh()
  3. 11.x core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::metaRefresh()

Loads a page that does a redirect.

Drupal uses Symfony's RedirectResponse for generating redirects. That class uses a lower-case 'http-equiv="refresh"'.

See also

\Symfony\Component\HttpFoundation\RedirectResponse

1 string reference to 'Test::metaRefresh'
test_page_test.routing.yml in core/modules/system/tests/modules/test_page_test/test_page_test.routing.yml
core/modules/system/tests/modules/test_page_test/test_page_test.routing.yml

File

core/modules/system/tests/modules/test_page_test/src/Controller/Test.php, line 169

Class

Test
Defines a test controller for page titles.

Namespace

Drupal\test_page_test\Controller

Code

public function metaRefresh() {
    return new RedirectResponse(Url::fromRoute('test_page_test.test_page', [], [
        'absolute' => TRUE,
    ])->toString(), 302);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.