예제 #1
0
파일: UserAction.php 프로젝트: sks40gb/jnv
 public function index()
 {
     $model = new \SKS\MODEL\UserModel();
     $this->view->title = 'Users';
     $this->view->userList = $model->userList();
     $this->view->render('user/manage_users');
 }
예제 #2
0
 public function index()
 {
     \SKS\LIB\Session::checkAuthorPermission();
     $model = new \SKS\MODEL\UserModel();
     $this->view->title = 'Comments';
     $this->view->userList = $model->userList();
     $this->view->render('comment/manage_comments');
 }