class TestControllers in Zircon Profile 8.0
Same name in this branch
- 8.0 core/modules/system/tests/modules/router_test_directory/src/TestControllers.php \Drupal\router_test\TestControllers
- 8.0 core/modules/system/tests/modules/paramconverter_test/src/TestControllers.php \Drupal\paramconverter_test\TestControllers
- 8.0 core/modules/system/tests/modules/menu_test/src/TestControllers.php \Drupal\menu_test\TestControllers
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/paramconverter_test/src/TestControllers.php \Drupal\paramconverter_test\TestControllers
Controller routine for testing the paramconverter.
Hierarchy
- class \Drupal\paramconverter_test\TestControllers
Expanded class hierarchy of TestControllers
File
- core/
modules/ system/ tests/ modules/ paramconverter_test/ src/ TestControllers.php, line 16 - Contains \Drupal\paramconverter_test\TestControllers.
Namespace
Drupal\paramconverter_testView source
class TestControllers {
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}",
];
}
public function testNodeSetParent(NodeInterface $node, NodeInterface $parent) {
return [
'#markup' => "Setting '{$parent->label()}' as parent of '{$node->label()}'.",
];
}
public function testEntityLanguage(NodeInterface $node) {
$build = [
'#markup' => $node
->label(),
];
\Drupal::service('renderer')
->addCacheableDependency($build, $node);
return $build;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TestControllers:: |
public | function | ||
TestControllers:: |
public | function | ||
TestControllers:: |
public | function |