public function Paragraph::getOwner

Deprecated

Paragraphs no longer have their own author, check the parent entity instead.

File

paragraphs/src/Entity/Paragraph.php, line 258

Class

Paragraph
Defines the Paragraph entity.

Namespace

Drupal\paragraphs\Entity

Code

public function getOwner() {
  $parent = $this
    ->getParentEntity();
  if ($parent instanceof EntityOwnerInterface) {
    return $parent
      ->getOwner();
  }
  else {
    return NULL;
  }
}