You are here

public function Test::renderPageWithDuplicateIds in Drupal 9

Returns a page render array with 2 elements with the same HTML IDs.

Return value

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

1 string reference to 'Test::renderPageWithDuplicateIds'
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 180

Class

Test
Defines a test controller for page titles.

Namespace

Drupal\test_page_test\Controller

Code

public function renderPageWithDuplicateIds() {
  return [
    '#type' => 'container',
    'title' => [
      '#type' => 'html_tag',
      '#tag' => 'h1',
      '#value' => 'Hello',
      '#attributes' => [
        'id' => 'page-element',
      ],
    ],
    'description' => [
      '#type' => 'html_tag',
      '#tag' => 'h2',
      '#value' => 'World',
      '#attributes' => [
        'id' => 'page-element',
      ],
    ],
  ];
}