function _AdvisingScreen::build_added_courses
Search API
4.x _AdvisingScreen.php | _AdvisingScreen::build_added_courses() |
5.x _AdvisingScreen.php | _AdvisingScreen::build_added_courses() |
Constructs the HTML to show which courses have been added by an advisor.
1 call to _AdvisingScreen::build_added_courses()
- _AdvisingScreen::build_screen_elements in classes/
_AdvisingScreen.php - This function calls the other "build" functions to assemble the View or What If tabs in FlightPath.
File
- classes/
_AdvisingScreen.php, line 518
Class
Code
function build_added_courses()
{
$pC = "";
$semester = new Semester(-88);
if ($new_semester = $this->degree_plan->list_semesters->find_match($semester))
{
$this->add_to_screen($this->display_semester($new_semester));
}
}