function _CourseList::load_course_descriptive_data
Search API
4.x _CourseList.php | _CourseList::load_course_descriptive_data() |
5.x _CourseList.php | _CourseList::load_course_descriptive_data() |
Call the $course->load_course_descriptive_data() on every course in the list.
File
- classes/
_CourseList.php, line 172
Class
Code
function load_course_descriptive_data()
{
// Call the load_descriptive_data() method
// for every course in the list.
for ($t = 0; $t < $this->count; $t++)
{
$course = $this->array_list [$t];
$course->load_descriptive_data();
}
}