Example #1
0
 public function __construct(PagerFanta $data)
 {
     $this->data = $data;
     $this->addMeta('limit', $data->getMaxPerPage());
     $this->addMeta('current_items', count($data->getCurrentPageResults()));
     $this->addMeta('total_items', $data->getNbResults());
     $this->addMeta('offset', $data->getCurrentPageOffsetStart());
 }