You are here

protected static function EditorTest::entityAccess in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/EditorTest.php \Drupal\Tests\jsonapi\Functional\EditorTest::entityAccess()

Checks access for the given operation on the given entity.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for which to check field access.

string $operation: The operation for which to check access.

\Drupal\Core\Session\AccountInterface $account: The account for which to check access.

Return value

\Drupal\Core\Access\AccessResultInterface The AccessResult.

Overrides ResourceTestBase::entityAccess

File

tests/src/Functional/EditorTest.php, line 242

Class

EditorTest
JSON API integration test for the "Editor" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected static function entityAccess(EntityInterface $entity, $operation, AccountInterface $account) {

  // Also reset the 'filter_format' entity access control handler because
  // editor access also depends on access to the configured filter format.
  \Drupal::entityTypeManager()
    ->getAccessControlHandler('filter_format')
    ->resetCache();
  return parent::entityAccess($entity, $operation, $account);
}