protected static function FieldConfigTest::entityAccess in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/tests/src/Functional/FieldConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldConfigTest::entityAccess()
- 10 core/modules/jsonapi/tests/src/Functional/FieldConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldConfigTest::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/ FieldConfigTest.php, line 173
Class
- FieldConfigTest
- JSON:API integration test for the "FieldConfig" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected static function entityAccess(EntityInterface $entity, $operation, AccountInterface $account) {
// Also clear the 'field_storage_config' entity access handler cache because
// the 'field_config' access handler delegates access to it.
// @see \Drupal\field\FieldConfigAccessControlHandler::checkAccess()
\Drupal::entityTypeManager()
->getAccessControlHandler('field_storage_config')
->resetCache();
return parent::entityAccess($entity, $operation, $account);
}