function _Student::to_string
Search API
4.x _Student.php | _Student::to_string() |
5.x _Student.php | _Student::to_string() |
File
- classes/
_Student.php, line 924
Class
Code
function to_string() {
$rtn = "Student Information:\n";
$rtn .= " Courses Taken:\n";
$rtn .= $this->list_courses_taken->to_string();
return $rtn;
}