You are here

function Course::resetCache in Course 7

Same name and namespace in other branches
  1. 7.2 includes/Course.inc \Course::resetCache()
1 call to Course::resetCache()
Course::track in includes/Course.inc
Track the course (scan required objects, update progress, completion, etc).

File

includes/Course.inc, line 204

Class

Course
An object that holds CourseObjects and tracker functions?

Code

function resetCache() {

  // Reset this course's cache.
  $this->courseObjects = array();
  return $this;
}