You are here

public function TestController::modalContentLink in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/dialog_renderer_test/src/Controller/TestController.php \Drupal\dialog_renderer_test\Controller\TestController::modalContentLink()

Return modal content with link.

Return value

array Render array for display in modal.

1 string reference to 'TestController::modalContentLink'
dialog_renderer_test.routing.yml in core/modules/system/tests/modules/dialog_renderer_test/dialog_renderer_test.routing.yml
core/modules/system/tests/modules/dialog_renderer_test/dialog_renderer_test.routing.yml

File

core/modules/system/tests/modules/dialog_renderer_test/src/Controller/TestController.php, line 32

Class

TestController
Test controller display modal links and content.

Namespace

Drupal\dialog_renderer_test\Controller

Code

public function modalContentLink() {
  return [
    '#type' => 'container',
    'text' => [
      '#type' => 'markup',
      '#markup' => 'Look at me in a modal!<br><a href="#">And a link!</a>',
    ],
    'input' => [
      '#type' => 'textfield',
      '#size' => 60,
    ],
  ];
}