function TestContent::test11
Same name in other branches
- 8.9.x core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::test11()
- 10 core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::test11()
- 11.x 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_testCode
public function test11() {
$account = $this->currentUser();
return [
'#markup' => $account->getAccountName(),
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.