function AdvisingScreen::build_added_courses
Search API
7.x AdvisingScreen.php | AdvisingScreen::build_added_courses() |
6.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 725
Class
Code
function build_added_courses()
{
$pC = "";
$semester = new Semester(DegreePlan::SEMESTER_NUM_FOR_COURSES_ADDED);
if ($new_semester = $this->degree_plan->list_semesters->find_match($semester))
{
$this->add_to_screen($this->display_semester($new_semester), "ADDED_COURSES");
}
}