function ActionTest::createEntity

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

Overrides ResourceTestBase::createEntity

File

core/modules/action/tests/src/Functional/Jsonapi/ActionTest.php, line 57

Class

ActionTest
JSON:API integration test for the "Action" config entity type.

Namespace

Drupal\Tests\action\Functional\Jsonapi

Code

protected function createEntity() {
    $action = Action::create([
        'id' => 'user_add_role_action.' . RoleInterface::ANONYMOUS_ID,
        'type' => 'user',
        'label' => 'Add the anonymous role to the selected users',
        'configuration' => [
            'rid' => RoleInterface::ANONYMOUS_ID,
        ],
        'plugin' => 'user_add_role_action',
    ]);
    $action->save();
    return $action;
}

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