1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Subscriber/TransitionSubscriber.php
2016-01-24 17:50:52 +01:00

28 lines
676 B
PHP

<?php
namespace Kanboard\Subscriber;
use Kanboard\Event\TaskEvent;
use Kanboard\Model\Task;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class TransitionSubscriber extends BaseSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return array(
Task::EVENT_MOVE_COLUMN => 'execute',
);
}
public function execute(TaskEvent $event)
{
$this->logger->debug('Subscriber executed: '.__METHOD__);
$user_id = $this->userSession->getId();
if (! empty($user_id)) {
$this->transition->save($user_id, $event->getAll());
}
}
}