You are here

public function LPResult::setLearningPathId in Opigno Learning path 3.x

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

Sets Learning Path Id.

1 call to LPResult::setLearningPathId()
LPResult::setLearningPath in src/Entity/LPResult.php
Sets Learning Path.

File

src/Entity/LPResult.php, line 78

Class

LPResult
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;
}