You are here

public function ChangedFieldItemList::defaultAccess in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Field/ChangedFieldItemList.php \Drupal\Core\Field\ChangedFieldItemList::defaultAccess()
  2. 10 core/lib/Drupal/Core/Field/ChangedFieldItemList.php \Drupal\Core\Field\ChangedFieldItemList::defaultAccess()

Contains the default access logic of this field.

See \Drupal\Core\Entity\EntityAccessControlHandlerInterface::fieldAccess() for the parameter documentation.

Return value

\Drupal\Core\Access\AccessResultInterface The access result.

Overrides FieldItemList::defaultAccess

File

core/lib/Drupal/Core/Field/ChangedFieldItemList.php, line 16

Class

ChangedFieldItemList
Defines an item list class for changed fields.

Namespace

Drupal\Core\Field

Code

public function defaultAccess($operation = 'view', AccountInterface $account = NULL) {

  // It is not possible to edit the changed field.
  return AccessResult::allowedIf($operation !== 'edit');
}