function AssignOwnerNode::execute
Same name in other branches
- 9 core/modules/node/src/Plugin/Action/AssignOwnerNode.php \Drupal\node\Plugin\Action\AssignOwnerNode::execute()
- 8.9.x core/modules/node/src/Plugin/Action/AssignOwnerNode.php \Drupal\node\Plugin\Action\AssignOwnerNode::execute()
- 10 core/modules/action/src/Plugin/Action/AssignOwnerNode.php \Drupal\action\Plugin\Action\AssignOwnerNode::execute()
Overrides ExecutableInterface::execute
File
-
core/
modules/ node/ src/ Plugin/ Action/ AssignOwnerNode.php, line 62
Class
- AssignOwnerNode
- Assigns ownership of a node to a user.
Namespace
Drupal\node\Plugin\ActionCode
public function execute($entity = NULL) {
/** @var \Drupal\node\NodeInterface $entity */
$entity->setOwnerId($this->configuration['owner_uid'])
->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.