vendor/bluue/sites-bundle/src/EventSubscriber/BundleRolesSubscriber.php line 46

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\SitesBundle\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(TranslatorInterface $tr)
  22.     {
  23.         $this->tr $tr;
  24.     }
  25.     /**
  26.      * @return string[]
  27.      */
  28.     public static function getSubscribedEvents(): array
  29.     {
  30.         return [
  31.             BundleRolesEvent::NAME => 'onLoad'
  32.         ];
  33.     }
  34.     /**
  35.      * @param BundleRolesEvent $event
  36.      * @return void
  37.      */
  38.     public function onLoad(BundleRolesEvent $event): void
  39.     {
  40.         $bundles $event->getBundles();
  41.         $bundles[] = [
  42.             'select_name' => 'sites',
  43.             'name' => $this->tr->trans('Sites', [], 'SitesBundle')
  44.         ];
  45.         $event->setBundles($bundles);
  46.     }
  47. }