summaryrefslogtreecommitdiff
path: root/app/Event/FileNotificationListener.php
blob: 98fc426016e55d434982f8575e4ece18fe1297e2 (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
<?php

namespace Event;

use Event\BaseNotificationListener;

/**
 * File notification listener
 *
 * @package event
 * @author  Frederic Guillot
 */
class FileNotificationListener extends BaseNotificationListener
{
    /**
     * Fetch data for the mail template
     *
     * @access public
     * @param  array    $data    Event data
     * @return array
     */
    public function getTemplateData(array $data)
    {
        $values = array();
        $values['file'] = $data;
        $values['task'] = $this->notification->task->getById($data['task_id'], true);

        return $values;
    }
}