You are here

public function TestContent::test11 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::test11()

Provides example content for route specific authentication.

@returns string The user name of the current logged in user.

1 string reference to 'TestContent::test11'
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 50

Class

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

Namespace

Drupal\router_test

Code

public function test11() {
  $account = $this
    ->currentUser();
  return [
    '#markup' => $account
      ->getAccountName(),
  ];
}