protected static function CommentTest::entityAccess in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/CommentTest.php \Drupal\Tests\jsonapi\Functional\CommentTest::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
- core/
modules/ jsonapi/ tests/ src/ Functional/ CommentTest.php, line 401
Class
- CommentTest
- JSON:API integration test for the "Comment" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected static function entityAccess(EntityInterface $entity, $operation, AccountInterface $account) {
// Also reset the 'entity_test' entity access control handler because
// comment access also depends on access to the commented entity type.
\Drupal::entityTypeManager()
->getAccessControlHandler('entity_test')
->resetCache();
return parent::entityAccess($entity, $operation, $account);
}