You are here

function image_access_test_hidden_entity_field_access in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/image/tests/modules/image_access_test_hidden/image_access_test_hidden.module \image_access_test_hidden_entity_field_access()

Implements hook_entity_field_access().

File

core/modules/image/tests/modules/image_access_test_hidden/image_access_test_hidden.module, line 16
Image field access for hidden fields.

Code

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