OptionsManager.php 724 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Service;
  3. use App\Config\View;
  4. use App\Entity\User;
  5. use App\Entity\Profile;
  6. use Symfony\Bundle\SecurityBundle\Security;
  7. class OptionsManager
  8. {
  9. protected Profile $options;
  10. public function __construct(Security $security)
  11. {
  12. $this->options = new Profile;
  13. if ($security->getToken() != null) {
  14. $user = $security->getToken()->getUser();
  15. if ($user instanceof User) {
  16. $this->options = $user->getProfile();
  17. }
  18. }
  19. }
  20. public function vue(): string
  21. {
  22. if ($this->options->getView() === View::TABLEAU)
  23. {
  24. return "tableaux";
  25. } else {
  26. return "vignettes";
  27. }
  28. }
  29. }