function DegreePlan::get_track_title
Search API
7.x DegreePlan.php | DegreePlan::get_track_title($bool_include_classification = FALSE) |
6.x DegreePlan.php | DegreePlan::get_track_title($bool_include_classification = FALSE) |
File
- classes/
DegreePlan.php, line 806
Class
Code
function get_track_title($bool_include_classification = FALSE) {
$this->load_descriptive_data();
$ttitle = trim($this->track_title);
if ($ttitle == "") {
return FALSE; // there is no track?
}
if ($bool_include_classification) {
$details = fp_get_degree_classification_details($this->degree_class);
$ttitle .= " (" . $details ["title"] . ")";
}
return $ttitle;
}