field_test_boolean_access_denied.module

Same filename and directory in other branches
  1. 9 core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.module
  2. 8.9.x core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.module
  3. 10 core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.module

Module for testing denying access to boolean fields.

File

core/modules/field/tests/modules/field_test_boolean_access_denied/field_test_boolean_access_denied.module

View source
<?php


/**
 * @file
 * Module for testing denying access to boolean fields.
 */
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Session\AccountInterface;

/**
 * Implements hook_entity_field_access().
 */
function field_test_boolean_access_denied_entity_field_access($operation, FieldDefinitionInterface $field_definition, AccountInterface $account, ?FieldItemListInterface $items = NULL) {
    return AccessResult::forbiddenIf($field_definition->getName() === \Drupal::state()->get('field.test_boolean_field_access_field'));
}

Functions

Title Deprecated Summary
field_test_boolean_access_denied_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.