function EntityOwnerTrait::setOwnerId
Same name in other branches
- 9 core/modules/user/src/EntityOwnerTrait.php \Drupal\user\EntityOwnerTrait::setOwnerId()
- 8.9.x core/modules/user/src/EntityOwnerTrait.php \Drupal\user\EntityOwnerTrait::setOwnerId()
- 10 core/modules/user/src/EntityOwnerTrait.php \Drupal\user\EntityOwnerTrait::setOwnerId()
1 call to EntityOwnerTrait::setOwnerId()
- Media::preSave in core/
modules/ media/ src/ Entity/ Media.php - Acts on an entity before the presave hook is invoked.
File
-
core/
modules/ user/ src/ EntityOwnerTrait.php, line 55
Class
- EntityOwnerTrait
- Provides a trait for entities that have an owner.
Namespace
Drupal\userCode
public function setOwnerId($uid) {
$key = $this->getEntityType()
->getKey('owner');
$this->set($key, $uid);
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.