Esempio n. 1
0
 /**
  * View user list.
  */
 public function index()
 {
     $users = $this->userStore->getWhere(array(), 1000, 0, array(), array('email' => 'ASC'));
     $this->view->users = $users;
     $this->layout->title = Lang::get('manage_users');
     return $this->view->render();
 }
Esempio n. 2
0
 /**
  * View user list.
  */
 public function index()
 {
     $users = $this->userStore->getWhere(array(), 1000, 0, array(), array('email' => 'ASC'));
     $this->view->users = $users;
     $this->config->set('page_title', 'Users');
     return $this->view->render();
 }