summaryrefslogtreecommitdiff
path: root/app/Controller/App.php
blob: 993149c5ef36ad9e3aaf6baa6a8f50519848d6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php

namespace Controller;

use Model\Project as ProjectModel;
use Model\SubTask;

/**
 * Application controller
 *
 * @package  controller
 * @author   Frederic Guillot
 */
class App extends Base
{
    /**
     * Dashboard for the current user
     *
     * @access public
     */
    public function index()
    {
        $user_id = $this->acl->getUserId();
        $projects = $this->projectPermission->getMemberProjects($user_id);
        $project_ids = array_keys($projects);

        $this->response->html($this->template->layout('app/index', array(
            'board_selector' => $this->projectPermission->getAllowedProjects($user_id),
            'events' => $this->projectActivity->getProjects($project_ids, 10),
            'tasks' => $this->taskFinder->getAllTasksByUser($user_id),
            'subtasks' => $this->subTask->getAllByUser($user_id, array(SubTask::STATUS_TODO, SubTask::STATUS_INPROGRESS)),
            'projects' => $this->project->getSummary($project_ids),
            'title' => t('Dashboard'),
        )));
    }
}