function Contact::setOwner
Same name in other branches
- 8.x-1.x content_entity_example/src/Entity/Contact.php \Drupal\content_entity_example\Entity\Contact::setOwner()
- 4.0.x modules/content_entity_example/src/Entity/Contact.php \Drupal\content_entity_example\Entity\Contact::setOwner()
File
-
modules/
content_entity_example/ src/ Entity/ Contact.php, line 180
Class
- Contact
- Defines the ContentEntityExample entity.
Namespace
Drupal\content_entity_example\EntityCode
public function setOwner(UserInterface $account) {
$this->set('user_id', $account->id());
return $this;
}