function WorkflowTest::createEntity

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/WorkflowTest.php \Drupal\Tests\jsonapi\Functional\WorkflowTest::createEntity()
  2. 8.9.x core/modules/jsonapi/tests/src/Functional/WorkflowTest.php \Drupal\Tests\jsonapi\Functional\WorkflowTest::createEntity()
  3. 10 core/modules/jsonapi/tests/src/Functional/WorkflowTest.php \Drupal\Tests\jsonapi\Functional\WorkflowTest::createEntity()

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/WorkflowTest.php, line 55

Class

WorkflowTest
JSON:API integration test for the "Workflow" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
    $workflow = Workflow::create([
        'id' => 'rest_workflow',
        'label' => 'REST Workflow',
        'type' => 'workflow_type_complex_test',
    ]);
    $workflow->getTypePlugin()
        ->addState('draft', 'Draft')
        ->addState('published', 'Published');
    $configuration = $workflow->getTypePlugin()
        ->getConfiguration();
    $configuration['example_setting'] = 'foo';
    $configuration['states']['draft']['extra'] = 'bar';
    $workflow->getTypePlugin()
        ->setConfiguration($configuration);
    $workflow->save();
    return $workflow;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.