function _Course::get_bool_exclude_repeat
Search API
5.x _Course.php | _Course::get_bool_exclude_repeat($degree_id = 0) |
Returns TRUE or FALSE if this course has been marked as exclude_repeat. Specify a degree_id to be more specific. Use -1 to mean "ANY" degree?
File
- classes/
_Course.php, line 508
Class
Code
function get_bool_exclude_repeat($degree_id = 0) {
// If degree_id is zero, then use the course's currently req_by_degree_id.
if ($degree_id == 0) {
$degree_id = $this->req_by_degree_id;
}
if ($degree_id > 0) {
//return $this->bool_has_been_displayed_by_degree_array[$degree_id];
return $this->get_details_by_degree($degree_id, "bool_exclude_repeat");
}
else {
// has the course been displayed by ANY degree?
if ($this->get_count_details_by_degree("bool_exclude_repeat", TRUE) > 0) {
return TRUE;
}
}
return FALSE;
}