ObjList::has_more
5.x ObjList.php | ObjList::has_more() |
4.x ObjList.php | ObjList::has_more() |
4 calls to ObjList::has_more()
- _CourseList::find_first_selectable in classes/
_CourseList.php - Returns the first course in the list which the user may select for advising. This method is used by the popup window to determine what exactly is the first element of the course list. (so it can make that radio button checked).
- _CourseList::has_any_course_selected in classes/
_CourseList.php - Returns TRUE if there is at least one course in this list which is selected (for advising).
- _CourseList::mark_as_displayed in classes/
_CourseList.php - Mark every course in this list as bool_has_been_displayed = true. Used for making sure we don't display the same course twice on screen.
- _GroupList::set_req_by_degree_id in classes/
_GroupList.php - Set all the courses and branches in this group to the specified degree_id.
File
- classes/
ObjList.php, line 192
Class
Code
function has_more() {
//adminDebug("here " . count($this->array_list));
if ($this->i < $this->count) {
return true;
}
else {
return false;
}
}