src/Entity/Partner.php line 14

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PartnerRepository;
  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 Gedmo\Mapping\Annotation as Gedmo;
  9. use Symfony\Component\Uid\Uuid;
  10. #[ORM\Entity(repositoryClassPartnerRepository::class)]
  11. class Partner
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue(strategy'CUSTOM')]
  15.     #[ORM\Column(type'uuid'uniquetrue)]
  16.     #[ORM\CustomIdGenerator(class: 'doctrine.uuid_generator')]
  17.     private ?Uuid $id null;
  18.     
  19.     #[ORM\Column(length255)]
  20.     private ?string $name null;
  21.     
  22.     #[ORM\Column(length191uniquetrue)]
  23.     #[Gedmo\Slug(fields: ['name'])]
  24.     private ?string $slug null;
  25.     #[ORM\ManyToOne(inversedBy'partners')]
  26.     private ?PartnerType $type null;
  27.     #[ORM\OneToMany(mappedBy'partner'targetEntityCourse::class)]
  28.     private Collection $courses;
  29.     
  30.     #[ORM\OneToOne(cascade: ['persist'])]
  31.     #[ORM\JoinColumn(onDelete'CASCADE')]
  32.     private ?Image $logo null;
  33.     
  34.     #[ORM\OneToOne(cascade: ['persist'])]
  35.     #[ORM\JoinColumn(onDelete'CASCADE')]
  36.     private ?Image $image null;
  37.     #[ORM\Column(length255)]
  38.     private ?string $location null;
  39.     #[ORM\OneToMany(mappedBy'initiator'targetEntityChallenge::class)]
  40.     private Collection $challenges;
  41.     #[ORM\ManyToMany(targetEntityChallenge::class, mappedBy'partners')]
  42.     private Collection $partner_challenges;
  43.     
  44.     #[ORM\Column(typeTypes::TEXT)]
  45.     private ?string $full_description null;
  46.     
  47.     #[ORM\Column(length255nullabletrue)]
  48.     private ?string $link null;
  49.     
  50.     #[ORM\Column(length255nullabletrue)]
  51.     private ?string $link_text null;
  52.     #[ORM\ManyToOne]
  53.     private ?ContactPerson $contact_person null;
  54.     public function __construct()
  55.     {
  56.         $this->courses = new ArrayCollection();
  57.         $this->challenges = new ArrayCollection();
  58.         $this->partner_challenges = new ArrayCollection();
  59.     }
  60.     
  61.     public function __toString() {
  62.         return $this->name;
  63.     }
  64.     public function getId(): ?Uuid
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getName(): ?string
  69.     {
  70.         return $this->name;
  71.     }
  72.     public function setName(string $name): self
  73.     {
  74.         $this->name $name;
  75.         return $this;
  76.     }
  77.     public function getSlug(): ?string
  78.     {
  79.         return $this->slug;
  80.     }
  81.     public function setSlug(string $slug): self
  82.     {
  83.         $this->slug $slug;
  84.         return $this;
  85.     }
  86.     public function getType(): ?PartnerType
  87.     {
  88.         return $this->type;
  89.     }
  90.     public function setType(?PartnerType $type): self
  91.     {
  92.         $this->type $type;
  93.         return $this;
  94.     }
  95.     /**
  96.      * @return Collection<int, Course>
  97.      */
  98.     public function getCourses(): Collection
  99.     {
  100.         return $this->courses;
  101.     }
  102.     public function addCourse(Course $course): self
  103.     {
  104.         if (!$this->courses->contains($course)) {
  105.             $this->courses->add($course);
  106.             $course->setPartner($this);
  107.         }
  108.         return $this;
  109.     }
  110.     public function removeCourse(Course $course): self
  111.     {
  112.         if ($this->courses->removeElement($course)) {
  113.             // set the owning side to null (unless already changed)
  114.             if ($course->getPartner() === $this) {
  115.                 $course->setPartner(null);
  116.             }
  117.         }
  118.         return $this;
  119.     }
  120.     public function getLogo(): ?Image
  121.     {
  122.         return $this->logo;
  123.     }
  124.     public function setLogo(?Image $logo): self
  125.     {
  126.         $this->logo $logo;
  127.         return $this;
  128.     }
  129.     public function getImage(): ?Image
  130.     {
  131.         return $this->image;
  132.     }
  133.     public function setImage(?Image $image): self
  134.     {
  135.         $this->image $image;
  136.         return $this;
  137.     }
  138.     public function getLocation(): ?string
  139.     {
  140.         return $this->location;
  141.     }
  142.     public function setLocation(string $location): self
  143.     {
  144.         $this->location $location;
  145.         return $this;
  146.     }
  147.     /**
  148.      * @return Collection<int, Challenge>
  149.      */
  150.     public function getChallenges(): Collection
  151.     {
  152.         return $this->challenges;
  153.     }
  154.     public function addChallenge(Challenge $challenge): self
  155.     {
  156.         if (!$this->challenges->contains($challenge)) {
  157.             $this->challenges->add($challenge);
  158.             $challenge->setInitiator($this);
  159.         }
  160.         return $this;
  161.     }
  162.     public function removeChallenge(Challenge $challenge): self
  163.     {
  164.         if ($this->challenges->removeElement($challenge)) {
  165.             // set the owning side to null (unless already changed)
  166.             if ($challenge->getInitiator() === $this) {
  167.                 $challenge->setInitiator(null);
  168.             }
  169.         }
  170.         return $this;
  171.     }
  172.     /**
  173.      * @return Collection<int, Challenge>
  174.      */
  175.     public function getPartnerChallenges(): Collection
  176.     {
  177.         return $this->partner_challenges;
  178.     }
  179.     public function addPartnerChallenge(Challenge $partnerChallenge): self
  180.     {
  181.         if (!$this->partner_challenges->contains($partnerChallenge)) {
  182.             $this->partner_challenges->add($partnerChallenge);
  183.             $partnerChallenge->addPartner($this);
  184.         }
  185.         return $this;
  186.     }
  187.     public function removePartnerChallenge(Challenge $partnerChallenge): self
  188.     {
  189.         if ($this->partner_challenges->removeElement($partnerChallenge)) {
  190.             $partnerChallenge->removePartner($this);
  191.         }
  192.         return $this;
  193.     }
  194.     public function getContactPerson(): ?ContactPerson
  195.     {
  196.         return $this->contact_person;
  197.     }
  198.     public function setContactPerson(?ContactPerson $contact_person): self
  199.     {
  200.         $this->contact_person $contact_person;
  201.         return $this;
  202.     }
  203.     
  204.     /**
  205.      * @return string|null
  206.      */
  207.     public function getFullDescription(): ?string
  208.     {
  209.         return $this->full_description;
  210.     }
  211.     
  212.     /**
  213.      * @param string|null $full_description
  214.      */
  215.     public function setFullDescription(?string $full_description): void
  216.     {
  217.         $this->full_description $full_description;
  218.     }
  219.     
  220.     /**
  221.      * @return string|null
  222.      */
  223.     public function getLink(): ?string
  224.     {
  225.         return $this->link;
  226.     }
  227.     
  228.     /**
  229.      * @param string|null $link
  230.      */
  231.     public function setLink(?string $link): void
  232.     {
  233.         $this->link $link;
  234.     }
  235.     
  236.     /**
  237.      * @return string|null
  238.      */
  239.     public function getLinkText(): ?string
  240.     {
  241.         return $this->link_text;
  242.     }
  243.     
  244.     /**
  245.      * @param string|null $link_text
  246.      */
  247.     public function setLinkText(?string $link_text): void
  248.     {
  249.         $this->link_text $link_text;
  250.     }
  251.     
  252.     
  253. }