예제 #1
0
파일: Log.php 프로젝트: apioo/fusio-impl
 public function getAll($startIndex = null, QueryFilter $filter)
 {
     $condition = $filter->getCondition();
     return new ResultSet($this->logTable->getCount($condition), $startIndex, 16, $this->logTable->getAll($startIndex, 16, 'id', Sql::SORT_DESC, $condition, Fields::blacklist(['header', 'body'])));
 }