function ObjList::check_is_empty
Search API
| 7.x ObjList.php | ObjList::check_is_empty() | 
        
| 6.x ObjList.php | ObjList::check_is_empty() | 
        
| 4.x ObjList.php | ObjList::check_is_empty() | 
        
| 5.x ObjList.php | ObjList::check_is_empty() | 
        
File
- classes/
ObjList.php, line 60  
Class
Code
function check_is_empty() 
 {
  if (count($this->array_list) > 0) 
   {
    $this->is_empty = false;
  }
}
  