mirror of
https://github.com/SrIzan10/kanboard.git
synced 2026-05-01 10:45:29 +00:00
26 lines
581 B
PHP
26 lines
581 B
PHP
<?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());
|
|
}
|
|
}
|
|
} |