function TestControllers::testUserNodeFoo
Same name in other branches
- 9 core/modules/system/tests/modules/paramconverter_test/src/TestControllers.php \Drupal\paramconverter_test\TestControllers::testUserNodeFoo()
- 10 core/modules/system/tests/modules/paramconverter_test/src/TestControllers.php \Drupal\paramconverter_test\TestControllers::testUserNodeFoo()
- 11.x core/modules/system/tests/modules/paramconverter_test/src/TestControllers.php \Drupal\paramconverter_test\TestControllers::testUserNodeFoo()
1 string reference to 'TestControllers::testUserNodeFoo'
- paramconverter_test.routing.yml in core/
modules/ system/ tests/ modules/ paramconverter_test/ paramconverter_test.routing.yml - core/modules/system/tests/modules/paramconverter_test/paramconverter_test.routing.yml
File
-
core/
modules/ system/ tests/ modules/ paramconverter_test/ src/ TestControllers.php, line 13
Class
- TestControllers
- Controller routine for testing the paramconverter.
Namespace
Drupal\paramconverter_testCode
public function testUserNodeFoo(EntityInterface $user, NodeInterface $node, $foo) {
$foo = is_object($foo) ? $foo->label() : $foo;
return [
'#markup' => "user: {$user->label()}, node: {$node->label()}, foo: {$foo}",
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.