function TestContent::subrequestTest
Same name in other branches
- 9 core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::subrequestTest()
- 8.9.x core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::subrequestTest()
- 10 core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::subrequestTest()
Uses a subrequest to determine the content.
1 string reference to 'TestContent::subrequestTest'
- router_test.routing.yml in core/
modules/ system/ tests/ modules/ router_test_directory/ router_test.routing.yml - core/modules/system/tests/modules/router_test_directory/router_test.routing.yml
File
-
core/
modules/ system/ tests/ modules/ router_test_directory/ src/ TestContent.php, line 66
Class
- TestContent
- Test controllers that are intended to be wrapped in a main controller.
Namespace
Drupal\router_testCode
public function subrequestTest(UserInterface $user) {
$request = \Drupal::request();
$request = Request::create('/router_test/test13/' . $user->id(), 'GET', $request->query
->all(), $request->cookies
->all(), [], $request->server
->all());
return $this->httpKernel
->handle($request, HttpKernelInterface::SUB_REQUEST);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.