Exemple #1
0
 public function getCurrentPageResults()
 {
     $this->list->debugStart();
     $results = parent::getCurrentPageResults();
     $this->list->debugStop();
     $return = array();
     foreach ($results as $result) {
         $r = $this->list->getResult($result);
         if ($r != null) {
             $return[] = $r;
         }
     }
     return $return;
 }