You are here

public function LPManagedContent::setLearningPathId in Opigno Learning path 8

Same name and namespace in other branches
  1. 3.x src/Entity/LPManagedContent.php \Drupal\opigno_learning_path\Entity\LPManagedContent::setLearningPathId()

Sets learning path group ID.

1 call to LPManagedContent::setLearningPathId()
LPManagedContent::setLearningPath in src/Entity/LPManagedContent.php
Sets learning path entity.

File

src/Entity/LPManagedContent.php, line 94

Class

LPManagedContent
Defines the Learning Path Content entity.

Namespace

Drupal\opigno_learning_path\Entity

Code

public function setLearningPathId($learning_path_id) {
  $this
    ->set('learning_path_id', $learning_path_id);
  return $this;
}