You are here

public function PopupOnLoad::setOwnerId in Popup On Load 8

Sets the entity owner's user ID.

Parameters

int $uid: The owner user id.

Return value

$this

Overrides EntityOwnerInterface::setOwnerId

File

src/Entity/PopupOnLoad.php, line 117

Class

PopupOnLoad
Defines the Popup On Load entity.

Namespace

Drupal\popup_onload\Entity

Code

public function setOwnerId($uid) {
  $this
    ->set('user_id', $uid);
  return $this;
}