Add subscriber for task (moved date)

This commit is contained in:
Frederic Guillot
2015-02-11 21:05:23 -05:00
parent 7f820a52b0
commit 1a8ca671b5
3 changed files with 26 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace Subscriber;
use Event\TaskEvent;
use Model\Task;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class TaskMovedDateSubscriber extends Base implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return array(
Task::EVENT_MOVE_COLUMN => array('execute', 0),
);
}
public function execute(TaskEvent $event)
{
if (isset($event['task_id'])) {
$this->container['db']->table(Task::TABLE)->eq('id', $event['task_id'])->update(array('date_moved' => time()));
}
}
}