<?php
/**
* @author Thomas HERISSON (contact@scaledev.fr)
* @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
* @license commercial
*/
declare(strict_types=1);
namespace Bluue\CrmBundle\EventSubscriber;
use Bluue\CustomersBundle\Event\CustomerViewTabsEvent;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\Security\Core\Security;
use Symfony\Contracts\Translation\TranslatorInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class CustomerViewTabsSubscriber implements EventSubscriberInterface
{
/**
* @var TranslatorInterface
*/
private TranslatorInterface $tr;
/**
* @var RequestStack
*/
protected RequestStack $requestStack;
/**
* @var Security
*/
protected Security $security;
/**
* @param RequestStack $requestStack
* @param TranslatorInterface $tr
* @param Security $security
*/
public function __construct(
RequestStack $requestStack,
TranslatorInterface $tr,
Security $security
) {
$this->requestStack = $requestStack;
$this->tr = $tr;
$this->security = $security;
}
/**
* @return string[]
*/
public static function getSubscribedEvents(): array
{
return [
CustomerViewTabsEvent::NAME => 'onLoad'
];
}
/**
* @param CustomerViewTabsEvent $event
* @return void
*/
public function onLoad(CustomerViewTabsEvent $event): void
{
if (!$this->security->isGranted('ROLE__CRM__READ_ONLY')) {
return;
}
$tabs = $event->getPages();
$newTabs = [
[
'path' => 'crm_bundle__customer_opportunities',
'customer_id_required' => true,
'name' => $this->tr->trans('Opportunities', [], 'CrmBundle')
]
];
$event->setPages(array_merge($tabs, $newTabs));
}
}