CkeditorOffCanvasTestController.php in Drupal 9
File
core/modules/ckeditor/tests/modules/src/CkeditorOffCanvasTestController.php
View source
<?php
namespace Drupal\ckeditor_test;
use Drupal\Core\Url;
class CkeditorOffCanvasTestController {
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;
}
}