You are here

public function Comment::getAuthorEmail in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getAuthorEmail()

Returns the comment author's email address.

For anonymous authors, this is the value as typed in the comment form.

Return value

string The email address of the author of the comment.

Overrides CommentInterface::getAuthorEmail

File

core/modules/comment/src/Entity/Comment.php, line 425

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

public function getAuthorEmail() {
  $mail = $this
    ->get('mail')->value;
  if ($this
    ->get('uid')->target_id != 0) {
    $mail = $this
      ->get('uid')->entity
      ->getEmail();
  }
  return $mail;
}