vendor/bluue/customers-bundle/src/EventSubscriber/BundleRolesSubscriber.php line 47

Open in your IDE?
  1. <?php
  2. /**
  3.  * @author Quentin CHATELAIN (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\CustomersBundle\EventSubscriber;
  9. use App\Event\BundleRolesEvent;
  10. use Symfony\Contracts\Translation\TranslatorInterface;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. class BundleRolesSubscriber implements EventSubscriberInterface
  13. {
  14.     /**
  15.      * @var TranslatorInterface
  16.      */
  17.     private TranslatorInterface $tr;
  18.     /**
  19.      * @param TranslatorInterface $tr
  20.      */
  21.     public function __construct(
  22.         TranslatorInterface $tr
  23.     ) {
  24.         $this->tr $tr;
  25.     }
  26.     /**
  27.      * @return string[]
  28.      */
  29.     public static function getSubscribedEvents(): array
  30.     {
  31.         return [
  32.             BundleRolesEvent::NAME => 'onLoad'
  33.         ];
  34.     }
  35.     /**
  36.      * @param BundleRolesEvent $event
  37.      * @return void
  38.      */
  39.     public function onLoad(BundleRolesEvent $event): void
  40.     {
  41.         $bundles $event->getBundles();
  42.         $bundles[] = [
  43.             'select_name' => 'customers',
  44.             'name' => $this->tr->trans('Customers', [], 'CustomersBundle')
  45.         ];
  46.         $event->setBundles($bundles);
  47.     }
  48. }