function AssignOwnerNode::access

Same name and namespace in other branches
  1. 9 core/modules/node/src/Plugin/Action/AssignOwnerNode.php \Drupal\node\Plugin\Action\AssignOwnerNode::access()
  2. 10 core/modules/node/src/Plugin/Action/AssignOwnerNode.php \Drupal\node\Plugin\Action\AssignOwnerNode::access()
  3. 11.x core/modules/node/src/Plugin/Action/AssignOwnerNode.php \Drupal\node\Plugin\Action\AssignOwnerNode::access()

Overrides ActionInterface::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.