Example #1
0
 static function paginate($total, $limit = 10, $link = "", $current = -1, $range = 5)
 {
     $pages = new Pagination($total, $limit);
     $pages->setTemplate('parter/pagination.html');
     if (!empty($link)) {
         $pages->setLinkPath($link);
     }
     if ($current != -1) {
         $pages->setCurrent($current);
     }
     $pages->setRange($range);
     return $pages->serve();
 }