public function LPStatus::setTraining in Opigno Learning path 8
Same name and namespace in other branches
- 3.x src/Entity/LPStatus.php \Drupal\opigno_learning_path\Entity\LPStatus::setTraining()
Sets the training entity.
Parameters
int $training: The training entity.
Return value
\Drupal\opigno_learning_path\LPStatusInterface The called entity.
Overrides LPStatusInterface::setTraining
File
- src/
Entity/ LPStatus.php, line 75
Class
- LPStatus
- Defines the User Learning Path attempt status entity.
Namespace
Drupal\opigno_learning_path\EntityCode
public function setTraining($training) {
$this
->set('gid', $training
->id());
return $this;
}