You are here

public function CourseObject::getFulfillment in Course 6

Same name and namespace in other branches
  1. 7.2 includes/CourseObject.inc \CourseObject::getFulfillment()
  2. 7 includes/CourseObject.inc \CourseObject::getFulfillment()

Get this course object's fulfillment object.

Return value

CourseObjectFulfillment

2 calls to CourseObject::getFulfillment()
CourseObjectQuiz::grade in modules/course_quiz/course_quiz.classes.inc
Marks a user's fulfillment record for this object complete if the user passed the quiz.
CourseObjectQuiz::unenroll in modules/course_quiz/course_quiz.classes.inc
Remove all quiz attempts associated with this fulfillment.

File

includes/course_object.core.inc, line 662

Class

CourseObject
Parent abstract base class of all course objects.

Code

public function getFulfillment() {
  return $this->courseObjectFulfillment;
}