You are here

public function Course::track in Course 7

Same name and namespace in other branches
  1. 6 includes/course.core.inc \Course::track()

Track the course (scan required objects, update progress, completion, etc).

File

includes/Course.inc, line 172

Class

Course
An object that holds CourseObjects and tracker functions?

Code

public function track($account = NULL) {
  $this
    ->resetCache();
  $this
    ->getTracker($account)
    ->track();
}