You are here

function workspace_access_test_workspace_access in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/workspaces/tests/modules/workspace_access_test/workspace_access_test.module \workspace_access_test_workspace_access()
  2. 9 core/modules/workspaces/tests/modules/workspace_access_test/workspace_access_test.module \workspace_access_test_workspace_access()

Implements hook_ENTITY_TYPE_access() for the 'workspace' entity type.

File

core/modules/workspaces/tests/modules/workspace_access_test/workspace_access_test.module, line 15
Provides supporting code for testing access for workspaces.

Code

function workspace_access_test_workspace_access(EntityInterface $entity, $operation, AccountInterface $account) {
  return \Drupal::state()
    ->get("workspace_access_test.result.{$operation}", AccessResult::neutral());
}