You are here

public function TestContent::subrequestTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::subrequestTest()
  2. 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 64

Class

TestContent
Test controllers that are intended to be wrapped in a main controller.

Namespace

Drupal\router_test

Code

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);
}