vendor/bluue/gocardless-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\GocardlessBundle\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.     private 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__GOCARDLESS__READ_ONLY')) {
  59.             return;
  60.         }
  61.         $currentPath $this->requestStack->getCurrentRequest()->getPathInfo();
  62.         $currentRoute $this->requestStack->getCurrentRequest()->attributes->get('_route');
  63.         $menu $event->getMenu();
  64.         if (!$menu->getChild('AccountingMenu')) {
  65.             $menu->addChild('AccountingMenu')
  66.                 ->setLabel($this->tr->trans('Accounting', [], 'GocardlessBundle'))
  67.                 ->setExtra('icon''fas fa-calculator');
  68.         }
  69.         $accountingMenu = [
  70.             [
  71.                 'name' => $this->tr->trans('GoCardless', [], 'GocardlessBundle'),
  72.                 'route' => 'gocardless_bundle__direct_debit_list',
  73.                 'extra_routes' => [
  74.                     'gocardless_bundle__payout_list'
  75.                 ]
  76.             ]
  77.         ];
  78.         foreach ($accountingMenu as $accountingMenuChild) {
  79.             $current $accountingMenuChild['route'] == $currentRoute
  80.                 || in_array($currentRoute$accountingMenuChild['extra_routes']);
  81.             $menu['AccountingMenu']->addChild(
  82.                 $accountingMenuChild['name'],
  83.                 [
  84.                     'route' => $accountingMenuChild['route'],
  85.                     'current' => $current
  86.                 ]
  87.             );
  88.         }
  89.         $matchPath = [
  90.             'bundles/gocardless-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. }