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(

View File

@ -56,7 +56,7 @@ class PrivacyEvent extends Event
* @param object $element
* @param array $args
*/
public function __construct(Person $person, object $element = null, array $args)
public function __construct(Person $person, object $element = null, array $args = array('action' => 'show'))
{
$this->person = $person;
$this->element = $element;

View File

@ -5,3 +5,7 @@ services:
$translator: '@Symfony\Component\Translation\TranslatorInterface'
$eventDispatcher: '@Symfony\Component\EventDispatcher\EventDispatcherInterface'
tags: ['controller.service_arguments']
Chill\PersonBundle\Controller\TimelinePersonController:
arguments:
$eventDispatcher: '@Symfony\Component\EventDispatcher\EventDispatcherInterface'