コード例 #1
0
 /**
  * List current users in ol_admins table
  */
 public function listAdminAsyncAction()
 {
     // Disable layout
     $this->_helper->layout->disableLayout();
     $this->view->users = null;
     try {
         $users = new OneLogin_Acl_Users();
         $this->view->users = $users->listUsers('user', 'ASC', 50);
     } catch (Exception $e) {
         throw new Exception($e->getMessage());
     }
 }