TestContent.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/modules/router_test_directory/src/TestContent.php
  2. 8.9.x core/modules/system/tests/modules/router_test_directory/src/TestContent.php
  3. 10 core/modules/system/tests/modules/router_test_directory/src/TestContent.php

Namespace

Drupal\router_test

File

core/modules/system/tests/modules/router_test_directory/src/TestContent.php

View source
<?php

namespace Drupal\router_test;

use Drupal\Core\Controller\ControllerBase;
use Drupal\user\UserInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\HttpKernelInterface;

/**
 * Test controllers that are intended to be wrapped in a main controller.
 */
class TestContent extends ControllerBase {
    
    /**
     * The HTTP kernel.
     *
     * @var \Symfony\Component\HttpKernel\HttpKernelInterface
     */
    protected $httpKernel;
    
    /**
     * Constructs a TestContent instance.
     */
    public function __construct(HttpKernelInterface $http_kernel) {
        $this->httpKernel = $http_kernel;
    }
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container) {
        return new static($container->get('http_kernel'));
    }
    
    /**
     * Provides example content for testing route enhancers.
     */
    public function test1() {
        return [
            '#markup' => 'abcde',
        ];
    }
    
    /**
     * Provides example content for route specific authentication.
     *
     * @return string
     *   The user name of the current logged in user.
     */
    public function test11() {
        $account = $this->currentUser();
        return [
            '#markup' => $account->getAccountName(),
        ];
    }
    public function testAccount(UserInterface $user) {
        $current_user_name = $this->currentUser()
            ->getAccountName();
        $this->currentUser()
            ->setAccount($user);
        return [
            '#markup' => $current_user_name . ':' . $user->getAccountName(),
        ];
    }
    
    /**
     * Uses a subrequest to determine the content.
     */
    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);
    }

}

Classes

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

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