Example #1
0
 /**
  * Allows the user to view all the permissions registered
  * in the application
  *
  * @access public
  * @return void
  */
 public function indexAction()
 {
     $this->title = '';
     $privilegeModel = new Privilege();
     $this->view->paginator = $privilegeModel->findAll($this->_getPage());
 }