You are here

protected function CKEditorTest::getDefaultAllowedContentConfig in Drupal 8

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

File

core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php, line 453

Class

CKEditorTest
Tests for the 'CKEditor' text editor plugin.

Namespace

Drupal\Tests\ckeditor\Kernel

Code

protected function getDefaultAllowedContentConfig() {
  return [
    'h2' => [
      'attributes' => 'id',
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'h3' => [
      'attributes' => FALSE,
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'h4' => [
      'attributes' => FALSE,
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'h5' => [
      'attributes' => FALSE,
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'h6' => [
      'attributes' => FALSE,
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'p' => [
      'attributes' => FALSE,
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'br' => [
      'attributes' => FALSE,
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'strong' => [
      'attributes' => FALSE,
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    'a' => [
      'attributes' => 'href,hreflang',
      'styles' => FALSE,
      'classes' => FALSE,
    ],
    '*' => [
      'attributes' => 'lang,dir',
      'styles' => FALSE,
      'classes' => FALSE,
    ],
  ];
}