You are here

public function Test::renderEncodedMarkup in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::renderEncodedMarkup()
  2. 10 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::renderEncodedMarkup()

Renders a page with encoded markup.

Return value

array A render array as expected by \Drupal\Core\Render\RendererInterface::render().

1 string reference to 'Test::renderEncodedMarkup'
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 120

Class

Test
Defines a test controller for page titles.

Namespace

Drupal\test_page_test\Controller

Code

public function renderEncodedMarkup() {
  return [
    '#plain_text' => 'Bad html <script>alert(123);</script>',
  ];
}