hook_event_dispatcher-8.x-2.04/modules/core_event_dispatcher/src/Event/Entity/EntityFieldAccessEvent.php
modules/core_event_dispatcher/src/Event/Entity/EntityFieldAccessEvent.php
<?php
namespace Drupal\core_event_dispatcher\Event\Entity;
use Drupal\Component\EventDispatcher\Event;
use Drupal\Core\Access\AccessResultNeutral;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\core_event_dispatcher\EntityHookEvents;
use Drupal\hook_event_dispatcher\Attribute\HookEvent;
use Drupal\hook_event_dispatcher\Event\AccessEventInterface;
use Drupal\hook_event_dispatcher\Event\AccessEventTrait;
use Drupal\hook_event_dispatcher\Event\EventInterface;
use Drupal\hook_event_dispatcher\Event\HookReturnInterface;
/**
* Class EntityInsertEvent.
*/
#[HookEvent(id: 'entity_field_access', hook: 'entity_field_access')]
class EntityFieldAccessEvent extends Event implements EventInterface, AccessEventInterface, HookReturnInterface {
use AccessEventTrait;
/**
* EntityFieldAccessEvent constructor.
*
* @param string $operation
* The operation.
* @param \Drupal\Core\Field\FieldDefinitionInterface $fieldDefinition
* The field definition.
* @param \Drupal\Core\Session\AccountInterface $account
* The account interface.
* @param \Drupal\Core\Field\FieldItemListInterface<\Drupal\Core\Field\FieldItemInterface>|null $items
* The field item list interface.
*/
public function __construct(
string $operation,
private readonly FieldDefinitionInterface $fieldDefinition,
AccountInterface $account,
private readonly ?FieldItemListInterface $items = NULL,
) {
$this->operation = $operation;
$this->account = $account;
$this->accessResult = AccessResultNeutral::neutral();
}
/**
* {@inheritdoc}
*/
public function getDispatcherType(): string {
return EntityHookEvents::ENTITY_FIELD_ACCESS;
}
/**
* Get the field definition.
*
* @return \Drupal\Core\Field\FieldDefinitionInterface
* The field definition.
*/
public function getFieldDefinition(): FieldDefinitionInterface {
return $this->fieldDefinition;
}
/**
* Get the items.
*
* @return null|\Drupal\Core\Field\FieldItemListInterface<\Drupal\Core\Field\FieldItemInterface>
* The items.
*/
public function getItems(): ?FieldItemListInterface {
return $this->items;
}
/**
* {@inheritdoc}
*/
public function getReturnValue() {
return $this->getAccessResult();
}
}
