function HtmxTestAttachmentsController::replace

Builds the HTMX response.

Return value

mixed[] A render array.

1 string reference to 'HtmxTestAttachmentsController::replace'
test_htmx.routing.yml in core/modules/system/tests/modules/test_htmx/test_htmx.routing.yml
core/modules/system/tests/modules/test_htmx/test_htmx.routing.yml

File

core/modules/system/tests/modules/test_htmx/src/Controller/HtmxTestAttachmentsController.php, line 31

Class

HtmxTestAttachmentsController
Returns responses for HTMX Test Attachments routes.

Namespace

Drupal\test_htmx\Controller

Code

public function replace() : array {
    $build['content'] = [
        '#type' => 'container',
        '#attached' => [
            'library' => [
                'test_htmx/assets',
            ],
        ],
        '#attributes' => [
            'class' => [
                'ajax-content',
            ],
        ],
        'example' => [
            '#markup' => 'Initial Content',
        ],
    ];
    return $build;
}

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