src/Entity/Users.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UsersRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  9. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  10. use Symfony\Component\Security\Core\User\UserInterface;
  11. #[ORM\Entity(repositoryClassUsersRepository::class)]
  12. #[UniqueEntity(fields: ['username'], message'There is already an account with this username')]
  13. class Users implements UserInterfacePasswordAuthenticatedUserInterface
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(length180uniquetrue)]
  20.     private ?string $username null;
  21.     #[ORM\Column]
  22.     private array $roles = [];
  23.     /**
  24.      * @var string The hashed password
  25.      */
  26.     #[ORM\Column]
  27.     private ?string $password null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $nom null;
  30.     #[ORM\Column(length255nullabletrue)]
  31.     private ?string $prenom null;
  32.     #[ORM\Column]
  33.     private ?bool $enable false;
  34.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  35.     private ?\DateTimeInterface $created null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $email null;
  38.     #[ORM\OneToMany(mappedBy'userCreated'targetEntityHonoraireDetFixe::class)]
  39.     private Collection $honoraireDetFixes;
  40.     #[ORM\OneToMany(mappedBy'userCreated'targetEntityTCnssA00::class)]
  41.     private Collection $tCnssA00s;
  42.     #[ORM\ManyToOne(targetEntityself::class)]
  43.     private ?self $userUpdated null;
  44.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  45.     private ?\DateTimeInterface $updated null;
  46.     #[ORM\OneToOne(cascade: ['persist''remove'])]
  47.     private ?PDossier $dossierResponsable null;
  48.     #[ORM\OneToMany(mappedBy'user'targetEntityPNotification::class)]
  49.     private Collection $notifications;
  50.     public function __construct()
  51.     {
  52.         $this->honoraireDetFixes = new ArrayCollection();
  53.         $this->tCnssA00s = new ArrayCollection();
  54.         $this->notifications = new ArrayCollection();
  55.     }
  56.   
  57.   
  58.     // #[ORM\ManyToMany(targetEntity: PDossier::class, mappedBy: 'users')]
  59.     // private Collection $dossiers;
  60.     // public function __construct()
  61.     // {
  62.     //     $this->operations = new ArrayCollection();
  63.     //     $this->dossiers = new ArrayCollection();
  64.     // }
  65.     public function getId(): ?int
  66.     {
  67.         return $this->id;
  68.     }
  69.     public function getUsername(): ?string
  70.     {
  71.         return $this->username;
  72.     }
  73.     public function setUsername(string $username): self
  74.     {
  75.         $this->username $username;
  76.         return $this;
  77.     }
  78.     /**
  79.      * A visual identifier that represents this user.
  80.      *
  81.      * @see UserInterface
  82.      */
  83.     public function getUserIdentifier(): string
  84.     {
  85.         return (string) $this->username;
  86.     }
  87.     /**
  88.      * @see UserInterface
  89.      */
  90.     public function getRoles(): array
  91.     {
  92.         $roles $this->roles;
  93.         // guarantee every user at least has ROLE_USER
  94.         // $roles[] = 'ROLE_USER';
  95.         return array_unique($roles);
  96.     }
  97.     public function setRoles(array $roles): self
  98.     {
  99.         $this->roles $roles;
  100.         return $this;
  101.     }
  102.     /**
  103.      * @see PasswordAuthenticatedUserInterface
  104.      */
  105.     public function getPassword(): string
  106.     {
  107.         return $this->password;
  108.     }
  109.     public function setPassword(string $password): self
  110.     {
  111.         $this->password $password;
  112.         return $this;
  113.     }
  114.     /**
  115.      * @see UserInterface
  116.      */
  117.     public function eraseCredentials()
  118.     {
  119.         // If you store any temporary, sensitive data on the user, clear it here
  120.         // $this->plainPassword = null;
  121.     }
  122.     public function getNom(): ?string
  123.     {
  124.         return $this->nom;
  125.     }
  126.     public function setNom(?string $nom): self
  127.     {
  128.         $this->nom $nom;
  129.         return $this;
  130.     }
  131.     public function getPrenom(): ?string
  132.     {
  133.         return $this->prenom;
  134.     }
  135.     public function setPrenom(?string $prenom): self
  136.     {
  137.         $this->prenom $prenom;
  138.         return $this;
  139.     }
  140.     public function isEnable(): ?bool
  141.     {
  142.         return $this->enable;
  143.     }
  144.     public function setEnable(bool $enable): self
  145.     {
  146.         $this->enable $enable;
  147.         return $this;
  148.     }
  149.     public function getCreated(): ?\DateTimeInterface
  150.     {
  151.         return $this->created;
  152.     }
  153.     public function setCreated(?\DateTimeInterface $created): self
  154.     {
  155.         $this->created $created;
  156.         return $this;
  157.     }
  158.     public function getEmail(): ?string
  159.     {
  160.         return $this->email;
  161.     }
  162.     public function setEmail(?string $email): self
  163.     {
  164.         $this->email $email;
  165.         return $this;
  166.     }
  167.     /**
  168.      * @return Collection<int, HonoraireDetFixe>
  169.      */
  170.     public function getHonoraireDetFixes(): Collection
  171.     {
  172.         return $this->honoraireDetFixes;
  173.     }
  174.     public function addHonoraireDetFix(HonoraireDetFixe $honoraireDetFix): static
  175.     {
  176.         if (!$this->honoraireDetFixes->contains($honoraireDetFix)) {
  177.             $this->honoraireDetFixes->add($honoraireDetFix);
  178.             $honoraireDetFix->setUserCreated($this);
  179.         }
  180.         return $this;
  181.     }
  182.     public function removeHonoraireDetFix(HonoraireDetFixe $honoraireDetFix): static
  183.     {
  184.         if ($this->honoraireDetFixes->removeElement($honoraireDetFix)) {
  185.             // set the owning side to null (unless already changed)
  186.             if ($honoraireDetFix->getUserCreated() === $this) {
  187.                 $honoraireDetFix->setUserCreated(null);
  188.             }
  189.         }
  190.         return $this;
  191.     }
  192.     /**
  193.      * @return Collection<int, TCnssA00>
  194.      */
  195.     public function getTCnssA00s(): Collection
  196.     {
  197.         return $this->tCnssA00s;
  198.     }
  199.     public function addTCnssA00(TCnssA00 $tCnssA00): static
  200.     {
  201.         if (!$this->tCnssA00s->contains($tCnssA00)) {
  202.             $this->tCnssA00s->add($tCnssA00);
  203.             $tCnssA00->setUserCreated($this);
  204.         }
  205.         return $this;
  206.     }
  207.     public function removeTCnssA00(TCnssA00 $tCnssA00): static
  208.     {
  209.         if ($this->tCnssA00s->removeElement($tCnssA00)) {
  210.             // set the owning side to null (unless already changed)
  211.             if ($tCnssA00->getUserCreated() === $this) {
  212.                 $tCnssA00->setUserCreated(null);
  213.             }
  214.         }
  215.         return $this;
  216.     }
  217.     public function getUserUpdated(): ?self
  218.     {
  219.         return $this->userUpdated;
  220.     }
  221.     public function setUserUpdated(?self $userUpdated): static
  222.     {
  223.         $this->userUpdated $userUpdated;
  224.         return $this;
  225.     }
  226.     public function getUpdated(): ?\DateTimeInterface
  227.     {
  228.         return $this->updated;
  229.     }
  230.     public function setUpdated(?\DateTimeInterface $updated): static
  231.     {
  232.         $this->updated $updated;
  233.         return $this;
  234.     }
  235.     public function getDossierResponsable(): ?PDossier
  236.     {
  237.         return $this->dossierResponsable;
  238.     }
  239.     public function setDossierResponsable(?PDossier $dossierResponsable): static
  240.     {
  241.         $this->dossierResponsable $dossierResponsable;
  242.         return $this;
  243.     }
  244.     /**
  245.      * @return Collection<int, PNotification>
  246.      */
  247.     public function getNotifications(): Collection
  248.     {
  249.         return $this->notifications;
  250.     }
  251.     public function addNotification(PNotification $notification): static
  252.     {
  253.         if (!$this->notifications->contains($notification)) {
  254.             $this->notifications->add($notification);
  255.             $notification->setUser($this);
  256.         }
  257.         return $this;
  258.     }
  259.     public function removeNotification(PNotification $notification): static
  260.     {
  261.         if ($this->notifications->removeElement($notification)) {
  262.             // set the owning side to null (unless already changed)
  263.             if ($notification->getUser() === $this) {
  264.                 $notification->setUser(null);
  265.             }
  266.         }
  267.         return $this;
  268.     }
  269.    
  270. }