summaryrefslogtreecommitdiff
path: root/app/Event/ProjectModificationDate.php
blob: 1b0b37361b8d268ac207f1091c23324be23fb308 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php

namespace Event;

use Core\Listener;
use Model\Project;

/**
 * Project modification date listener
 *
 * Update the last modified field for a project
 *
 * @package event
 * @author  Frederic Guillot
 */
class ProjectModificationDate implements Listener
{
    /**
     * Project model
     *
     * @accesss private
     * @var \Model\Project
     */
    private $project;

    /**
     * Constructor
     *
     * @access public
     * @param  \Model\Project   $project   Project model instance
     */
    public function __construct(Project $project)
    {
        $this->project = $project;
    }

    /**
     * Return class information
     *
     * @access public
     * @return string
     */
    public function __toString()
    {
        return get_called_class();
    }

    /**
     * Execute the action
     *
     * @access public
     * @param  array   $data   Event data dictionary
     * @return bool            True if the action was executed or false when not executed
     */
    public function execute(array $data)
    {
        if (isset($data['project_id'])) {
            return $this->project->updateModificationDate($data['project_id']);
        }

        return false;
    }
}