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