function AdvisingScreen::draw_semester_box_top
Search API
7.x AdvisingScreen.php | AdvisingScreen::draw_semester_box_top($title, $hideheaders = false) |
6.x AdvisingScreen.php | AdvisingScreen::draw_semester_box_top($title, $hideheaders = false) |
Uses the draw_box_top function, specifically for semesters.
Parameters
string $title:
bool $hideheaders:
Return value
string
7 calls to AdvisingScreen::draw_semester_box_top()
- AdvisingScreen::build_excess_credit in classes/
AdvisingScreen.php - Constructs the HTML to show the Excess Credits list.
- AdvisingScreen::build_footnotes in classes/
AdvisingScreen.php - Constructs the HTML which will show footnotes for substitutions and transfer credits.
- AdvisingScreen::build_graduate_credit in classes/
AdvisingScreen.php - Constructs the HTML which will be used to display the student's graduate credits (if any exist)
- AdvisingScreen::build_test_scores in classes/
AdvisingScreen.php - Constructs the HTML to show the student's test scores.
- AdvisingScreen::build_transfer_credit in classes/
AdvisingScreen.php - Constructs the HTML which will be used to display the student's transfer credits
File
- classes/
AdvisingScreen.php, line 4078
Class
Code
function draw_semester_box_top($title, $hideheaders = false)
{
$extra_classes = " fp-semester-box-top fp-semester-box-top-" . fp_get_machine_readable(strtolower($title));
return $this->draw_box_top($title, $hideheaders, $extra_classes);
}