protected function CKEditorTest::getDefaultDisallowedContentConfig in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/ckeditor/src/Tests/CKEditorTest.php \Drupal\ckeditor\Tests\CKEditorTest::getDefaultDisallowedContentConfig()
2 calls to CKEditorTest::getDefaultDisallowedContentConfig()
- 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 447 - Contains \Drupal\ckeditor\Tests\CKEditorTest.
Class
- CKEditorTest
- Tests for the 'CKEditor' text editor plugin.
Namespace
Drupal\ckeditor\TestsCode
protected function getDefaultDisallowedContentConfig() {
return array(
'*' => array(
'attributes' => 'on*',
),
);
}