function ObjList::has_more
Search API
7.x ObjList.php | ObjList::has_more() |
6.x ObjList.php | ObjList::has_more() |
4.x ObjList.php | ObjList::has_more() |
5.x ObjList.php | ObjList::has_more() |
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;
}
}