function CKEditor5OffCanvasTestController::testOffCanvas

Same name and namespace in other branches
  1. 9 core/modules/ckeditor5/tests/modules/ckeditor5_test/src/Controller/CKEditor5OffCanvasTestController.php \Drupal\ckeditor5_test\Controller\CKEditor5OffCanvasTestController::testOffCanvas()
  2. 10 core/modules/ckeditor5/tests/modules/ckeditor5_test/src/Controller/CKEditor5OffCanvasTestController.php \Drupal\ckeditor5_test\Controller\CKEditor5OffCanvasTestController::testOffCanvas()

Returns a link that can open a node add form in an off-canvas dialog.

Return value

array A render array.

1 string reference to 'CKEditor5OffCanvasTestController::testOffCanvas'
ckeditor5_test.routing.yml in core/modules/ckeditor5/tests/modules/ckeditor5_test/ckeditor5_test.routing.yml
core/modules/ckeditor5/tests/modules/ckeditor5_test/ckeditor5_test.routing.yml

File

core/modules/ckeditor5/tests/modules/ckeditor5_test/src/Controller/CKEditor5OffCanvasTestController.php, line 20

Class

CKEditor5OffCanvasTestController
Provides controller for testing CKEditor in off-canvas dialogs.

Namespace

Drupal\ckeditor5_test\Controller

Code

public function testOffCanvas() {
    $build['link'] = [
        '#type' => 'link',
        '#title' => 'Add Node',
        '#url' => Url::fromRoute('node.add', [
            'node_type' => 'page',
        ]),
        '#attributes' => [
            'class' => [
                'use-ajax',
            ],
            'data-dialog-type' => 'dialog',
            'data-dialog-renderer' => 'off_canvas',
        ],
    ];
    $build['#attached']['library'][] = 'core/drupal.dialog.off_canvas';
    return $build;
}

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