function FieldUpdateActionBase::access
Same name in other branches
- 9 core/lib/Drupal/Core/Field/FieldUpdateActionBase.php \Drupal\Core\Field\FieldUpdateActionBase::access()
- 8.9.x core/lib/Drupal/Core/Field/FieldUpdateActionBase.php \Drupal\Core\Field\FieldUpdateActionBase::access()
- 10 core/lib/Drupal/Core/Field/FieldUpdateActionBase.php \Drupal\Core\Field\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\FieldCode
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();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.