コード例 #1
0
 public function renderTags()
 {
     $vp = new Cntrl\VisualPaginator($this, 'paginator');
     $paginator = $vp->getPaginator();
     $paginator->itemsPerPage = 25;
     $paginator->itemCount = $this->tags->countBy();
     $this->template->tags = $this->tags->findBy([], [], $paginator->itemsPerPage, $paginator->offset);
 }