public function Flipbook::setOwnerId in 3D Flipbook 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ Flipbook.php, line 195
Class
- Flipbook
- Defines the Flipbook entity.
Namespace
Drupal\flipbook\EntityCode
public function setOwnerId($uid) {
$this
->set('user_id', $uid);
return $this;
}