Exemplo n.º 1
0
 /**
  * Get rows
  *
  * @return \IteratorAggregate
  */
 public function getRows()
 {
     if ($this->mapper->getRows() === null) {
         $paginator = new Paginator($this->getRowQuery(), $this->getLimit(), $this->getPage());
         $this->mapper->setRows($paginator);
         $this->datagrid->setPaginator($paginator);
     }
     return $this->mapper->getRows();
 }