mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
97 lines
2.9 KiB
PHP
97 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Subscriber;
|
|
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
|
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
|
|
use Symfony\Component\Translation\TranslatorInterface;
|
|
use Knp\Menu\ItemInterface;
|
|
use App\Event\Menu\MenuEvent;
|
|
use App\DBAL\Types\MenuEventType;
|
|
|
|
class UserMenuSubscriber implements EventSubscriberInterface
|
|
{
|
|
/**
|
|
* @var TokenStorageInterface
|
|
*/
|
|
private $tokenStorage;
|
|
|
|
/**
|
|
* @var TranslatorInterface
|
|
*/
|
|
private $translator;
|
|
|
|
public function __construct(TokenStorageInterface $tokenStorage, TranslatorInterface $translator)
|
|
{
|
|
$this->tokenStorage = $tokenStorage;
|
|
$this->translator = $translator;
|
|
}
|
|
|
|
public function onUserMenuConfigure(MenuEvent $event): void
|
|
{
|
|
$menu = $event->getItem();
|
|
$menu->addChild($this->translator->trans('start'), [
|
|
'route' => 'homepage',
|
|
'attributes' => [
|
|
'icon' => 'fab fa-font-awesome-flag',
|
|
],
|
|
]);
|
|
|
|
$menu->addChild($this->translator->trans('imprint'), [
|
|
'route' => 'imprint',
|
|
'attributes' => [
|
|
'icon' => 'fas fa-address-card',
|
|
],
|
|
]);
|
|
$this->generateUserDropdown($menu);
|
|
}
|
|
|
|
private function generateUserDropdown(ItemInterface $menu): void
|
|
{
|
|
$dropdown = $menu->addChild($this->tokenStorage->getToken()
|
|
->getUsername() ?? 'user', [
|
|
'attributes' => [
|
|
'dropdown' => true,
|
|
'icon' => 'fas fa-user',
|
|
],
|
|
]);
|
|
if ($this->tokenStorage->getToken()->getRoles()) {
|
|
$dropdown->addChild($this->translator->trans('logout'), [
|
|
'route' => 'logout',
|
|
'attributes' => [
|
|
'icon' => 'fas fa-sign-out-alt',
|
|
'divider_append' => true,
|
|
],
|
|
]);
|
|
$dropdown->addChild($this->translator->trans('edit profile'), [
|
|
'route' => 'fos_user_profile_edit',
|
|
'attributes' => [
|
|
'icon' => 'fas fa-user-edit',
|
|
'divider_append' => true,
|
|
],
|
|
]);
|
|
} else {
|
|
$dropdown->addChild($this->translator->trans('login'), [
|
|
'route' => 'fos_user_security_login',
|
|
'attributes' => [
|
|
'divider_append' => true,
|
|
'icon' => 'fas fa-sign-in-alt',
|
|
],
|
|
]);
|
|
}
|
|
$dropdown->addChild('register', [
|
|
'route' => 'fos_user_registration_register',
|
|
'attributes' => [
|
|
'icon' => 'fas fa-file-signature',
|
|
],
|
|
]);
|
|
}
|
|
|
|
public static function getSubscribedEvents(): array
|
|
{
|
|
return [
|
|
MenuEventType::USER => 'onUserMenuConfigure',
|
|
];
|
|
}
|
|
}
|