function RenderAttachedTestController::head

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php \Drupal\render_attached_test\Controller\RenderAttachedTestController::head()
  2. 10 core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php \Drupal\render_attached_test\Controller\RenderAttachedTestController::head()
  3. 11.x core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php \Drupal\render_attached_test\Controller\RenderAttachedTestController::head()

Tests attached HTML head rendering.

Return value

array A render array using the 'html_head' directive.

1 string reference to 'RenderAttachedTestController::head'
render_attached_test.routing.yml in core/modules/system/tests/modules/render_attached_test/render_attached_test.routing.yml
core/modules/system/tests/modules/render_attached_test/render_attached_test.routing.yml

File

core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php, line 44

Class

RenderAttachedTestController
Controller for various permutations of #attached in the render array.

Namespace

Drupal\render_attached_test\Controller

Code

public function head() {
    $head = [
        [
            '#tag' => 'meta',
            '#attributes' => [
                'test-attribute' => 'testvalue',
            ],
        ],
        'test_head_attribute',
    ];
    $render = [];
    $render['#attached']['html_head'][] = $head;
    return $render;
}

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