Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FieldUpdateActionBase.php

function FieldUpdateActionBase::access

Overrides ActionInterface::access

File

core/lib/Drupal/Core/Field/FieldUpdateActionBase.php, line 51

Class

FieldUpdateActionBase
Provides a base for action plugins that update one or more fields.

Namespace

Drupal\Core\Field

Code

public function access($object, ?AccountInterface $account = NULL, $return_as_object = FALSE) {
    
    /** @var \Drupal\Core\Access\AccessResultInterface $result */
    $result = $object->access('update', $account, TRUE);
    foreach ($this->getFieldsToUpdate() as $field => $value) {
        $result->andIf($object->{$field}
            ->access('edit', $account, TRUE));
    }
    return $return_as_object ? $result : $result->isAllowed();
}
RSS feed
Powered by Drupal