src/EventSubscriber/NavbarUserSubscriber.php line 52

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use App\Entity\Usuario;
  4. use App\Model\UserModel;
  5. use KevinPapst\AdminLTEBundle\Event\NavbarUserEvent;
  6. use KevinPapst\AdminLTEBundle\Event\ShowUserEvent;
  7. use KevinPapst\AdminLTEBundle\Event\SidebarUserEvent;
  8. use KevinPapst\AdminLTEBundle\Event\ThemeEvents;
  9. use KevinPapst\AdminLTEBundle\Model\NavBarUserLink;
  10. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  11. use Symfony\Component\Security\Core\Security;
  12. class NavbarUserSubscriber implements EventSubscriberInterface
  13. {
  14.     protected Security $security;
  15.     public function __construct(Security $security)
  16.     {
  17.         $this->security $security;
  18.     }
  19.     /**
  20.      * Returns an array of event names this subscriber wants to listen to.
  21.      *
  22.      * The array keys are event names and the value can be:
  23.      *
  24.      *  * The method name to call (priority defaults to 0)
  25.      *  * An array composed of the method name to call and the priority
  26.      *  * An array of arrays composed of the method names to call and respective
  27.      *    priorities, or 0 if unset
  28.      *
  29.      * For instance:
  30.      *
  31.      *  * ['eventName' => 'methodName']
  32.      *  * ['eventName' => ['methodName', $priority]]
  33.      *  * ['eventName' => [['methodName1', $priority], ['methodName2']]]
  34.      *
  35.      * @return array The event names to listen to
  36.      */
  37.     public static function getSubscribedEvents(): array
  38.     {
  39.         return [
  40.             NavbarUserEvent::class => ['onShowUser'100],
  41.             SidebarUserEvent::class => ['onShowUser'100],
  42.         ];
  43.     }
  44.     public function onShowUser(ShowUserEvent $event)
  45.     {
  46.         if (null === $this->security->getUser()) {
  47.             return;
  48.         }
  49.         /* @var $myUser Usuario */
  50.         $myUser $this->security->getUser();
  51.         $user = new UserModel();
  52.         $user
  53.             ->setId($myUser->getId())
  54.             ->setName($myUser->getNome())
  55.             ->setUsername($myUser->getUsername())
  56.             ->setIsOnline(true)
  57.             ->setTitle($myUser->getTipo())
  58.             ->setAvatar(null)
  59.             ->setMemberSince($myUser->getCreatedAt());
  60.         $event->setUser($user);
  61.         $event->addLink(new NavBarUserLink("Alterar senha""change_pass"));
  62.         if ($this->security->isGranted('IS_IMPERSONATOR')) {
  63.             $event->addLink(new NavBarUserLink("Fechar Avatar""admin", ['avatar' => '_exit']));
  64.         }
  65.         $event->setShowProfileLink(false);
  66.     }
  67. }