コード例 #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
ファイル: CommentAction.php プロジェクト: sks40gb/jnv
 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');
 }