jsonapi_test_field_access.module

Same filename and directory in other branches
  1. 8.9.x core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.module
  2. 10 core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.module
  3. 11.x core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.module

Contains hook implementations for testing the JSON:API module.

File

core/modules/jsonapi/tests/modules/jsonapi_test_field_access/jsonapi_test_field_access.module

View source
<?php


/**
 * @file
 * Contains hook implementations for testing the JSON:API module.
 */
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Session\AccountInterface;

/**
 * Implements hook_entity_field_access().
 */
function jsonapi_test_field_access_entity_field_access($operation, FieldDefinitionInterface $field_definition, AccountInterface $account) {
    // @see \Drupal\Tests\jsonapi\Functional\ResourceTestBase::testRelationships().
    if ($field_definition->getName() === 'field_jsonapi_test_entity_ref') {
        // Forbid access in all cases.
        $permission = "field_jsonapi_test_entity_ref {$operation} access";
        $access_result = $account->hasPermission($permission) ? AccessResult::allowed() : AccessResult::forbidden("The '{$permission}' permission is required.");
        return $access_result->addCacheContexts([
            'user.permissions',
        ]);
    }
    // No opinion.
    return AccessResult::neutral();
}

Functions

Title Deprecated Summary
jsonapi_test_field_access_entity_field_access Implements hook_entity_field_access().

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