You are here

public function LPManagedLink::setParentContent in Opigno Learning path 3.x

Same name and namespace in other branches
  1. 8 src/Entity/LPManagedLink.php \Drupal\opigno_learning_path\Entity\LPManagedLink::setParentContent()

Sets parent learning path content object.

File

src/Entity/LPManagedLink.php, line 121

Class

LPManagedLink
Defines the Learning Path Link entity.

Namespace

Drupal\opigno_learning_path\Entity

Code

public function setParentContent(LPManagedContent $parent_content) {
  $this
    ->setParentContentId($parent_content
    ->id());
  return $this;
}