You are here

public function CourseObjectFulfillment::save in Course 8.2

Same name and namespace in other branches
  1. 8.3 src/Entity/CourseObjectFulfillment.php \Drupal\course\Entity\CourseObjectFulfillment::save()
  2. 3.x src/Entity/CourseObjectFulfillment.php \Drupal\course\Entity\CourseObjectFulfillment::save()

Track course after saving fulfillment.

Overrides EntityBase::save

File

src/Entity/CourseObjectFulfillment.php, line 139

Class

CourseObjectFulfillment
Parent class for course object fulfillment. Unlike Course objects, this is not abstract and can be used when the fulfillment requirements are simple.

Namespace

Drupal\course\Entity

Code

public function save() {

  // Make sure the user is enrolled first.
  if ($this
    ->getCourseObject()
    ->getCourse()
    ->getTracker($this
    ->getUser())) {
    parent::save();

    // Re-evaluate requirements.
    $account = $this
      ->getUser();
    $this
      ->getCourseObject()
      ->getCourse()
      ->getTracker($account)
      ->track();
    return $this;
  }
  else {
    return FALSE;
  }
}