function ServerEndpointController::renderArray
Same name in this branch
- 10 core/modules/sdc/tests/modules/sdc_test/src/Controller/ServerEndpointController.php \Drupal\sdc_test\Controller\ServerEndpointController::renderArray()
Same name in other branches
- 11.x core/modules/sdc/tests/modules/sdc_test/src/Controller/ServerEndpointController.php \Drupal\sdc_test\Controller\ServerEndpointController::renderArray()
- 11.x core/modules/system/tests/modules/sdc_test/src/Controller/ServerEndpointController.php \Drupal\sdc_test\Controller\ServerEndpointController::renderArray()
Render an arbitrary render array.
2 string references to 'ServerEndpointController::renderArray'
- sdc_test.routing.yml in core/
modules/ sdc/ tests/ modules/ sdc_test/ sdc_test.routing.yml - core/modules/sdc/tests/modules/sdc_test/sdc_test.routing.yml
- sdc_test.routing.yml in core/
modules/ system/ tests/ modules/ sdc_test/ sdc_test.routing.yml - core/modules/system/tests/modules/sdc_test/sdc_test.routing.yml
File
-
core/
modules/ system/ tests/ modules/ sdc_test/ src/ Controller/ ServerEndpointController.php, line 15
Class
- ServerEndpointController
- An endpoint to serve a component during tests.
Namespace
Drupal\sdc_test\ControllerCode
public function renderArray() : array {
$render_array = \Drupal::state()->get('sdc_test_component', [
'#markup' => 'Set your component in state using the sdc_test_component key.',
]);
return [
'#type' => 'container',
'#cache' => [
'max-age' => 0,
],
// Magic wrapper ID to pull the HTML from.
'#attributes' => [
'id' => 'sdc-wrapper',
],
'component' => $render_array,
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.