summaryrefslogtreecommitdiff
path: root/app/Subscriber/TransitionSubscriber.php
blob: 347dd37d415de55cfd38ce431e350ae02978fb06 (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
<?php

namespace Subscriber;

use Event\TaskEvent;
use Model\Task;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

class TransitionSubscriber extends Base implements EventSubscriberInterface
{
    public static function getSubscribedEvents()
    {
        return array(
            Task::EVENT_MOVE_COLUMN => array('execute', 0),
        );
    }

    public function execute(TaskEvent $event)
    {
        $user_id = $this->userSession->getId();

        if (! empty($user_id)) {
            $this->transition->save($user_id, $event->getAll());
        }
    }
}