12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Service;
- use App\Config\View;
- use App\Entity\User;
- use App\Entity\Profile;
- use Symfony\Bundle\SecurityBundle\Security;
- class OptionsManager
- {
- protected Profile $options;
- public function __construct(Security $security)
- {
- $this->options = new Profile;
- if ($security->getToken() != null) {
- $user = $security->getToken()->getUser();
- if ($user instanceof User) {
- $this->options = $user->getProfile();
- }
- }
- }
- public function vue(): string
- {
- if ($this->options->getView() === View::TABLEAU)
- {
- return "tableaux";
- } else {
- return "vignettes";
- }
- }
- }
|