You are here

public function EarlyRenderingTestController::renderArray in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/early_rendering_controller_test/src/EarlyRenderingTestController.php \Drupal\early_rendering_controller_test\EarlyRenderingTestController::renderArray()
1 call to EarlyRenderingTestController::renderArray()
EarlyRenderingTestController::ajaxResponse in core/modules/system/tests/modules/early_rendering_controller_test/src/EarlyRenderingTestController.php
1 string reference to 'EarlyRenderingTestController::renderArray'
early_rendering_controller_test.routing.yml in core/modules/system/tests/modules/early_rendering_controller_test/early_rendering_controller_test.routing.yml
core/modules/system/tests/modules/early_rendering_controller_test/early_rendering_controller_test.routing.yml

File

core/modules/system/tests/modules/early_rendering_controller_test/src/EarlyRenderingTestController.php, line 65
Contains \Drupal\early_rendering_controller_test\EarlyRenderingTestController.

Class

EarlyRenderingTestController
Controller routines for early_rendering_test routes.

Namespace

Drupal\early_rendering_controller_test

Code

public function renderArray() {
  return [
    '#pre_render' => [
      function () {
        $elements = $this
          ->earlyRenderContent();
        return $elements;
      },
    ],
  ];
}