public function TestContent::testAccount in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 60 - Contains \Drupal\router_test\TestContent.
Class
- TestContent
- Test controllers that are intended to be wrapped in a main controller.
Namespace
Drupal\router_testCode
public function testAccount(UserInterface $user) {
$current_user_name = $this
->currentUser()
->getUsername();
$this
->currentUser()
->setAccount($user);
return [
'#markup' => $current_user_name . ':' . $user
->getUsername(),
];
}