Example #1
0
 /**
  * Index action
  */
 public function indexAction()
 {
     $currentPage = $this->request->getQuery('page', 'int');
     // GET
     $limit = $this->request->getQuery('limit', 'int');
     $catModel = new Models\Category();
     $this->view->setVar('pager', $catModel->listCategories($limit, $currentPage));
 }