function TestContent::testAccount

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::testAccount()
  2. 8.9.x core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::testAccount()
  3. 11.x core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::testAccount()
1 string reference to 'TestContent::testAccount'
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 55

Class

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

Namespace

Drupal\router_test

Code

public function testAccount(UserInterface $user) {
  $current_user_name = $this->currentUser()
    ->getAccountName();
  $this->currentUser()
    ->setAccount($user);
  return [
    '#markup' => $current_user_name . ':' . $user->getAccountName(),
  ];
}

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