You are here

public function EasyEmail::getCreator in Easy Email 8

Same name and namespace in other branches
  1. 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::getCreator()

Returns the entity creator's user entity.

Return value

\Drupal\user\UserInterface The creator user entity.

Overrides EasyEmailInterface::getCreator

File

src/Entity/EasyEmail.php, line 177

Class

EasyEmail
Defines the Email entity.

Namespace

Drupal\easy_email\Entity

Code

public function getCreator() {
  return $this
    ->get('creator_uid')->entity;
}