vendor/bluue/pim-bundle/src/EventSubscriber/ConfigurationBundleSubscriber.php line 56

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\PimBundle\EventSubscriber;
  9. use App\Event\BundleRolesEvent;
  10. use Symfony\Component\HttpFoundation\RequestStack;
  11. use Symfony\Contracts\Translation\TranslatorInterface;
  12. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  13. class ConfigurationBundleSubscriber implements EventSubscriberInterface
  14. {
  15.     /**
  16.      * @var TranslatorInterface
  17.      */
  18.     private TranslatorInterface $tr;
  19.     /**
  20.      * @var RequestStack
  21.      */
  22.     protected RequestStack $requestStack;
  23.     /**
  24.      * @param RequestStack $requestStack
  25.      * @param TranslatorInterface $tr
  26.      */
  27.     public function __construct(
  28.         RequestStack $requestStack,
  29.         TranslatorInterface $tr
  30.     ) {
  31.         $this->requestStack $requestStack;
  32.         $this->tr $tr;
  33.     }
  34.     /**
  35.      * @return string[]
  36.      */
  37.     public static function getSubscribedEvents(): array
  38.     {
  39.         return [
  40.             BundleRolesEvent::NAME => 'bundleRoles'
  41.         ];
  42.     }
  43.     /**
  44.      * @param BundleRolesEvent $event
  45.      * @return void
  46.      */
  47.     public function bundleRoles(BundleRolesEvent $event): void
  48.     {
  49.         $bundles $event->getBundles();
  50.         $bundles[] = [
  51.             'select_name' => 'pim',
  52.             'name' => $this->tr->trans('PIM', [], 'PimBundle')
  53.         ];
  54.         $event->setBundles($bundles);
  55.     }
  56. }