function TestController::modalContentLink

Same name in other branches
  1. 10 core/modules/system/tests/modules/dialog_renderer_test/src/Controller/TestController.php \Drupal\dialog_renderer_test\Controller\TestController::modalContentLink()
  2. 11.x 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,
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.