Skip to content
Snippets Groups Projects
Commit 3c3692c8 authored by catch's avatar catch
Browse files

Issue #2536880 by alexpott: CKEditor admin form broken

parent d3c33d58
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -157,7 +157,7 @@ public function settingsForm(array $form, FormStateInterface $form_state, Editor ...@@ -157,7 +157,7 @@ public function settingsForm(array $form, FormStateInterface $form_state, Editor
'library' => array('ckeditor/drupal.ckeditor.admin'), 'library' => array('ckeditor/drupal.ckeditor.admin'),
'drupalSettings' => [ 'drupalSettings' => [
'ckeditor' => [ 'ckeditor' => [
'toolbarAdmin' => $this->renderer->renderPlain($ckeditor_settings_toolbar), 'toolbarAdmin' => (string) $this->renderer->renderPlain($ckeditor_settings_toolbar),
], ],
], ],
), ),
......
...@@ -117,6 +117,18 @@ function testExistingFormat() { ...@@ -117,6 +117,18 @@ function testExistingFormat() {
$editor = entity_load('editor', 'filtered_html'); $editor = entity_load('editor', 'filtered_html');
$this->assertFalse($editor, 'No Editor config entity exists yet.'); $this->assertFalse($editor, 'No Editor config entity exists yet.');
// Ensure that drupalSettings is correct.
$ckeditor_settings_toolbar = array(
'#theme' => 'ckeditor_settings_toolbar',
'#editor' => Editor::create(['editor' => 'ckeditor']),
'#plugins' => $this->container->get('plugin.manager.ckeditor.plugin')->getButtons(),
);
$this->assertEqual(
$this->drupalSettings['ckeditor']['toolbarAdmin'],
$this->container->get('renderer')->renderPlain($ckeditor_settings_toolbar),
'CKEditor toolbar settings are rendered as part of drupalSettings.'
);
// Ensure the toolbar buttons configuration value is initialized to the // Ensure the toolbar buttons configuration value is initialized to the
// expected default value. // expected default value.
$expected_buttons_value = json_encode($expected_default_settings['toolbar']['rows']); $expected_buttons_value = json_encode($expected_default_settings['toolbar']['rows']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment