function EditorResourceTestBase::createEntity
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- 
              core/
modules/ editor/ tests/ src/ Functional/ Rest/ EditorResourceTestBase.php, line 44  
Class
- EditorResourceTestBase
 - ResourceTestBase for Editor entity.
 
Namespace
Drupal\Tests\editor\Functional\RestCode
protected function createEntity() {
  // Create a "Llama" filter format.
  $llama_format = FilterFormat::create([
    'name' => 'Llama',
    'format' => 'llama',
    'langcode' => 'es',
    'filters' => [
      'filter_html' => [
        'status' => TRUE,
        'settings' => [
          'allowed_html' => '<p> <a> <b> <lo>',
        ],
      ],
    ],
  ]);
  $llama_format->save();
  // Create a "Camelids" editor.
  $camelids = Editor::create([
    'format' => 'llama',
    'editor' => 'ckeditor5',
  ]);
  $camelids->setImageUploadSettings([
    'status' => TRUE,
    'scheme' => 'public',
    'directory' => 'inline-images',
    'max_size' => '',
    'max_dimensions' => [
      'width' => '',
      'height' => '',
    ],
  ])
    ->save();
  return $camelids;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.