function AssignOwnerNode::access

File

core/modules/node/src/Plugin/Action/AssignOwnerNode.php, line 136

Class

AssignOwnerNode
Assigns ownership of a node to a user.

Namespace

Drupal\node\Plugin\Action

Code

public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
  /** @var \Drupal\node\NodeInterface $object */
  $result = $object->access('update', $account, TRUE)
    ->andIf($object->getOwner()
    ->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.