| <?php |
|
|
| namespace Kanboard\Controller; |
|
|
| |
| |
| |
| |
| |
| |
| class DashboardController extends BaseController |
| { |
| |
| |
| |
| |
| |
| public function show() |
| { |
| $user = $this->getUser(); |
|
|
| $this->response->html($this->helper->layout->dashboard('dashboard/overview', array( |
| 'title' => t('Dashboard for %s', $this->helper->user->getFullname($user)), |
| 'user' => $user, |
| 'overview_paginator' => $this->dashboardPagination->getOverview($user['id']), |
| 'project_paginator' => $this->projectPagination->getDashboardPaginator($user['id'], 'show', 10), |
| ))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function tasks() |
| { |
| $user = $this->getUser(); |
|
|
| $this->response->html($this->helper->layout->dashboard('dashboard/tasks', array( |
| 'title' => t('Tasks overview for %s', $this->helper->user->getFullname($user)), |
| 'paginator' => $this->taskPagination->getDashboardPaginator($user['id'], 'tasks', 50), |
| 'user' => $user, |
| ))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function subtasks() |
| { |
| $user = $this->getUser(); |
|
|
| $this->response->html($this->helper->layout->dashboard('dashboard/subtasks', array( |
| 'title' => t('Subtasks overview for %s', $this->helper->user->getFullname($user)), |
| 'paginator' => $this->subtaskPagination->getDashboardPaginator($user['id']), |
| 'user' => $user, |
| 'nb_subtasks' => $this->subtaskModel->countByAssigneeAndTaskStatus($user['id']), |
| ))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function projects() |
| { |
| $user = $this->getUser(); |
|
|
| $this->response->html($this->helper->layout->dashboard('dashboard/projects', array( |
| 'title' => t('Projects overview for %s', $this->helper->user->getFullname($user)), |
| 'paginator' => $this->projectPagination->getDashboardPaginator($user['id'], 'projects', 25), |
| 'user' => $user, |
| ))); |
| } |
| } |
|
|