function has_items()
 {
     if ($this->search_box_called) {
         return true;
     }
     return parent::has_items();
 }
Example #2
0
 public function has_items()
 {
     if ($this->items instanceof fRecordSet) {
         return count($this->items) > 0;
     }
     return parent::has_items();
 }