summaryrefslogtreecommitdiff
path: root/app/Controller/App.php
blob: 193c258320fd60fb6ca66d23b0550dd1b850b079 (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
<?php

namespace Controller;

use Model\Project as ProjectModel;

/**
 * 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->getAllowedProjects($user_id);

        $this->response->html($this->template->layout('app_index', array(
            'board_selector' => $projects,
            'events' => $this->projectActivity->getProjects(array_keys($projects), 10),
            'tasks' => $this->taskFinder->getAllTasksByUser($user_id),
            'title' => t('Dashboard'),
        )));
    }
}