public function Test::renderPipeInLink in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::renderPipeInLink()
- 10 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::renderPipeInLink()
Renders a page with pipe character in link test.
Return value
array A render array as expected by \Drupal\Core\Render\RendererInterface::render().
1 string reference to 'Test::renderPipeInLink'
- test_page_test.routing.yml in core/
modules/ system/ tests/ modules/ test_page_test/ test_page_test.routing.yml - core/modules/system/tests/modules/test_page_test/test_page_test.routing.yml
File
- core/
modules/ system/ tests/ modules/ test_page_test/ src/ Controller/ Test.php, line 116
Class
- Test
- Defines a test controller for page titles.
Namespace
Drupal\test_page_test\ControllerCode
public function renderPipeInLink() {
return [
'#markup' => '<a href="http://example.com">foo|bar|baz</a>',
];
}