vendor/bluue/planning-bundle/src/EventSubscriber/EditUserPathsSubscriber.php line 47

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\PlanningBundle\EventSubscriber;
  9. use App\Event\EditUserPathsEvent;
  10. use Symfony\Contracts\Translation\TranslatorInterface;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. class EditUserPathsSubscriber 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.             EditUserPathsEvent::NAME => 'onLoad'
  33.         ];
  34.     }
  35.     /**
  36.      * @param EditUserPathsEvent $event
  37.      * @return void
  38.      */
  39.     public function onLoad(EditUserPathsEvent $event): void
  40.     {
  41.         $event->addPath([
  42.             'url' => 'planning_bundle__google_access',
  43.             'id' => $event->getUserId(),
  44.             'name' => $this->tr->trans('Google Calendar configuration', [], 'PlanningBundle')
  45.         ]);
  46.     }
  47. }