protected function CKEditorTest::getDefaultInternalConfig

2 calls to CKEditorTest::getDefaultInternalConfig()
CKEditorTest::testGetJSSettings in drupal/core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorTest.php
Tests CKEditor::getJSSettings().
CKEditorTest::testInternalGetConfig in drupal/core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorTest.php
Tests Internal::getConfig().

File

drupal/core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorTest.php, line 223
Definition of \Drupal\ckeditor\Tests\CKEditorTest.

Class

CKEditorTest
Tests for the 'CKEditor' text editor plugin.

Namespace

Drupal\ckeditor\Tests

Code

protected function getDefaultInternalConfig() {
  return array(
    'customConfig' => '',
    'pasteFromWordPromptCleanup' => TRUE,
    'removeDialogTabs' => 'image:Link;image:advanced;link:advanced',
    'resize_dir' => 'vertical',
    'keystrokes' => array(
      array(
        0x110000 + 75,
        'link',
      ),
      array(
        0x110000 + 76,
        NULL,
      ),
    ),
  );
}