vendor/bluue/crm-bundle/src/EventSubscriber/ConfigureMenuSubscriber.php line 66

Open in your IDE?
  1. <?php
  2. /**
  3.  * @author Thomas HERISSON (contact@scaledev.fr)
  4.  * @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
  5.  * @license commercial
  6.  */
  7. declare(strict_types=1);
  8. namespace Bluue\CrmBundle\EventSubscriber;
  9. use App\Event\ConfigureMenuEvent;
  10. use App\Services\CheckBundleInstall;
  11. use Symfony\Component\HttpFoundation\RequestStack;
  12. use Symfony\Component\Security\Core\Security;
  13. use Symfony\Contracts\Translation\TranslatorInterface;
  14. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  15. class ConfigureMenuSubscriber implements EventSubscriberInterface
  16. {
  17.     /**
  18.      * @var TranslatorInterface
  19.      */
  20.     private TranslatorInterface $tr;
  21.     /**
  22.      * @var RequestStack
  23.      */
  24.     protected RequestStack $requestStack;
  25.     /**
  26.      * @var Security
  27.      */
  28.     protected Security $security;
  29.     /**
  30.      * @param RequestStack $requestStack
  31.      * @param TranslatorInterface $tr
  32.      * @param Security $security
  33.      */
  34.     public function __construct(
  35.         RequestStack $requestStack,
  36.         TranslatorInterface $tr,
  37.         Security $security
  38.     ) {
  39.         $this->requestStack $requestStack;
  40.         $this->tr $tr;
  41.         $this->security $security;
  42.     }
  43.     /**
  44.      * @return string[]
  45.      */
  46.     public static function getSubscribedEvents(): array
  47.     {
  48.         return [
  49.             ConfigureMenuEvent::NAME => 'onLoad'
  50.         ];
  51.     }
  52.     /**
  53.      * @param ConfigureMenuEvent $event
  54.      * @return void
  55.      */
  56.     public function onLoad(ConfigureMenuEvent $event): void
  57.     {
  58.         if (!$this->security->isGranted('ROLE__CRM__READ_ONLY')) {
  59.             return;
  60.         }
  61.         $menu $event->getMenu();
  62.         $crmMenuChilds = [
  63.             [
  64.                 'key' => 'opportunities',
  65.                 'label' => $this->tr->trans('Opportunities', [], 'CrmBundle'),
  66.                 'route' => 'crm_bundle__opportunity_list',
  67.                 'matchPath' => 'bundles/crm-bundle/opportunity/',
  68.             ]
  69.         ];
  70.         $currentPath $this->requestStack->getCurrentRequest()->getPathInfo();
  71.         $currentRoute $this->requestStack->getCurrentRequest()->attributes->get('_route');
  72.         $crm 'CrmMenu';
  73.         $menu->addChild($crm)
  74.             ->setLabel($this->tr->trans('CRM', [], 'CrmBundle'))
  75.             ->setExtra('icon''fas fa-handshake');
  76.         foreach ($crmMenuChilds as $crmMenuChild) {
  77.             $current $crmMenuChild['route'] == $currentRoute
  78.                 || strpos($currentPath$crmMenuChild['matchPath']) !== false
  79.             ;
  80.             $menu['CrmMenu']->addChild(
  81.                 $crmMenuChild['key'],
  82.                 [
  83.                     'route' => $crmMenuChild['route'],
  84.                     'label' => $crmMenuChild['label'],
  85.                     'current' => $current
  86.                 ]
  87.             );
  88.         }
  89.         $matchPath = [
  90.             'bundles/crm-bundle/customer'
  91.         ];
  92.         foreach ($matchPath as $match) {
  93.             if (strpos($currentPath$match) !== false) {
  94.                 $menu->getChild('CustomersMenu')->getChild('customers')->setCurrent(true);
  95.             }
  96.         }
  97.     }
  98. }