function ImageAccessTestHiddenHooks::entityFieldAccess

Implements hook_entity_field_access().

File

core/modules/image/tests/modules/image_access_test_hidden/src/Hook/ImageAccessTestHiddenHooks.php, line 21

Class

ImageAccessTestHiddenHooks
Hook implementations for image_access_test_hidden.

Namespace

Drupal\image_access_test_hidden\Hook

Code

public function entityFieldAccess($operation, FieldDefinitionInterface $field_definition, AccountInterface $account, ?FieldItemListInterface $items = NULL) {
    if ($field_definition->getName() == 'field_image' && $operation == 'edit') {
        return AccessResult::forbidden();
    }
    return AccessResult::neutral();
}

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