From 109a2a2e25e0e170d3df3860d054f82f70e78c4d Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Wed, 1 Jul 2015 17:36:21 -0400 Subject: Change dashboard --- app/Controller/User.php | 35 ----------------------------------- 1 file changed, 35 deletions(-) (limited to 'app/Controller/User.php') diff --git a/app/Controller/User.php b/app/Controller/User.php index 6628bcb6..119041e5 100644 --- a/app/Controller/User.php +++ b/app/Controller/User.php @@ -31,27 +31,6 @@ class User extends Base return $this->template->layout('user/layout', $params); } - /** - * Common method to get the user - * - * @access protected - * @return array - */ - protected function getUser() - { - $user = $this->user->getById($this->request->getIntegerParam('user_id')); - - if (empty($user)) { - $this->notfound(); - } - - if (! $this->userSession->isAdmin() && $this->userSession->getId() != $user['id']) { - $this->forbidden(); - } - - return $user; - } - /** * List all users * @@ -138,20 +117,6 @@ class User extends Base ))); } - /** - * Display user calendar - * - * @access public - */ - public function calendar() - { - $user = $this->getUser(); - - $this->response->html($this->layout('user/calendar', array( - 'user' => $user, - ))); - } - /** * Display timesheet * -- cgit v1.2.3