privacyEvent, add event in timeline

This commit is contained in:
Mat
2018-10-16 12:03:54 +02:00
parent f5baeaa06c
commit 4c8f170025
3 changed files with 28 additions and 3 deletions

View File

@@ -19,6 +19,8 @@
namespace Chill\PersonBundle\Controller;
use Chill\PersonBundle\Privacy\PrivacyEvent;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
@@ -30,7 +32,23 @@ use Symfony\Bundle\FrameworkBundle\Controller\Controller;
*/
class TimelinePersonController extends Controller
{
/**
* @var EventDispatcherInterface
*/
protected $eventDispatcher;
/**
* TimelinePersonController constructor.
*
* @param EventDispatcherInterface $eventDispatcher
*/
public function __construct(EventDispatcherInterface $eventDispatcher)
{
$this->eventDispatcher = $eventDispatcher;
}
public function personAction(Request $request, $person_id)
{
$person = $this->getDoctrine()
@@ -52,7 +70,10 @@ class TimelinePersonController extends Controller
);
$paginator = $paginatorFactory->create($nbItems);
$event = new PrivacyEvent($person);
$this->eventDispatcher->dispatch(PrivacyEvent::PERSON_PRIVACY_EVENT, $event);
return $this->render('ChillPersonBundle:Timeline:index.html.twig', array
(
'timeline' => $timelineBuilder->getTimelineHTML(