You are here

protected function CKEditorTest::getDefaultInternalConfig in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/ckeditor/src/Tests/CKEditorTest.php \Drupal\ckeditor\Tests\CKEditorTest::getDefaultInternalConfig()
2 calls to CKEditorTest::getDefaultInternalConfig()
CKEditorTest::testGetJSSettings in core/modules/ckeditor/src/Tests/CKEditorTest.php
Tests CKEditor::getJSSettings().
CKEditorTest::testInternalGetConfig in core/modules/ckeditor/src/Tests/CKEditorTest.php
Tests Internal::getConfig().

File

core/modules/ckeditor/src/Tests/CKEditorTest.php, line 422
Contains \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,
    'resize_dir' => 'vertical',
    'justifyClasses' => array(
      'text-align-left',
      'text-align-center',
      'text-align-right',
      'text-align-justify',
    ),
    'entities' => FALSE,
  );
}