function _CourseList::find_specific_course

4.x _CourseList.php _CourseList::find_specific_course($course_id = 0, $term_id = 0, $bool_transfer = false, $bool_exclude_substitutions = true, Course $use_course = null)
5.x _CourseList.php _CourseList::find_specific_course($course_id = 0, $term_id = 0, $bool_transfer = false, $bool_exclude_substitutions = true, Course $use_course = null, $sub_req_by_degree_id = 0)

Find and return a specific course from the list.

Parameters

int $course_id:

  • The course_id to look for. Do not set if using $use_course.

int $term_id:

  • The term_id for the course to look for. Do not set if using $use_course.

bool $bool_transfer:

  • Is the course we are looking for a transfer course? Do not use if using $use_course.

bool $bool_exclude_substitutions:

  • If TRUE, we will not consider courses which have been used in a substitution.

Course $use_course:

  • Optional. If you already have a course object which can be used as a template to search for, specify it here. Otherwise, set to NULL. If using this, then $course_id, $term_id, and $bool_transfer will be ignored.

Return value

Course

File

classes/_CourseList.php, line 127

Class

_CourseList

Code

function find_specific_course($course_id = 0, $term_id = 0, $bool_transfer = false, $bool_exclude_substitutions = true, Course $use_course = null) 
 {
  if ($use_course != null && is_object($use_course)) 
   {
    $course_id = $use_course->course_id;
    $term_id = $use_course->term_id;
    $bool_transfer = $use_course->bool_transfer;
  }
  // Look through the array for a course with this id, termId, and
  // transfer credit status.
  for ($t = 0; $t < $this->count; $t++) 
   {
    $course = $this->array_list [$t];

    $check_course_id = $course->course_id;
    if ($bool_transfer == true && is_object($course->course_transfer)) 
     {
      $check_course_id = $course->course_transfer->course_id;
    }

    if ($check_course_id == $course_id && $course->term_id == $term_id && $course->bool_transfer == $bool_transfer) 
     {

      if ($bool_exclude_substitutions == true) 
       {
        if ($course->bool_substitution == true) 
         {
          continue;
        }

      }

      return $course;
    }
  }

  return false;
}