src/Entity/AboutUs.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AboutUsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. /**
  8.  * @ORM\Entity(repositoryClass=AboutUsRepository::class)
  9.  */
  10. class AboutUs
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $title;
  22.     /**
  23.      * @Gedmo\Slug(fields={"title"}, unique=true)
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private $slug;
  27.     /**
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $subTitle;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $background;
  35.     /**
  36.      * @Assert\Image(maxSize="2M")
  37.      */
  38.     private $backgroundFile;
  39.     /**
  40.      * @ORM\Column(type="string", length=255, nullable=true)
  41.      */
  42.     private $title1;
  43.     /**
  44.      * @ORM\Column(type="text", nullable=true)
  45.      */
  46.     private $description1;
  47.     /**
  48.      * @ORM\Column(type="string", length=255, nullable=true)
  49.      */
  50.     private $image1;
  51.     /**
  52.      * @Assert\Image(maxSize="2M")
  53.      */
  54.     private $imageFile1;
  55.     /**
  56.      * @ORM\Column(type="string", length=255, nullable=true)
  57.      */
  58.     private $videoLink1;
  59.     /**
  60.      * @ORM\Column(type="string", length=255, nullable=true)
  61.      */
  62.     private $title2;
  63.     /**
  64.      * @ORM\Column(type="string", length=255, nullable=true)
  65.      */
  66.     private $subTitle2;
  67.     /**
  68.      * @ORM\Column(type="string", length=255, nullable=true)
  69.      */
  70.     private $image2;
  71.     /**
  72.      * @Assert\Image(maxSize="2M")
  73.      */
  74.     private $imageFile2;
  75.     public function getId(): ?int
  76.     {
  77.         return $this->id;
  78.     }
  79.     public function getTitle(): ?string
  80.     {
  81.         return $this->title;
  82.     }
  83.     public function setTitle(string $title): self
  84.     {
  85.         $this->title $title;
  86.         return $this;
  87.     }
  88.     public function getSubTitle(): ?string
  89.     {
  90.         return $this->subTitle;
  91.     }
  92.     public function setSubTitle(?string $subTitle): self
  93.     {
  94.         $this->subTitle $subTitle;
  95.         return $this;
  96.     }
  97.     public function getBackground(): ?string
  98.     {
  99.         return $this->background;
  100.     }
  101.     public function setBackground(?string $background): self
  102.     {
  103.         $this->background $background;
  104.         return $this;
  105.     }
  106.     public function getBackgroundFile()
  107.     {
  108.         return $this->backgroundFile;
  109.     }
  110.     public function setBackgroundFile($backgroundFile)
  111.     {
  112.         $this->backgroundFile $backgroundFile;
  113.         return $this;
  114.     }
  115.     public function getTitle1(): ?string
  116.     {
  117.         return $this->title1;
  118.     }
  119.     public function setTitle1(?string $title1): self
  120.     {
  121.         $this->title1 $title1;
  122.         return $this;
  123.     }
  124.     public function getDescription1(): ?string
  125.     {
  126.         return $this->description1;
  127.     }
  128.     public function setDescription1(?string $description1): self
  129.     {
  130.         $this->description1 $description1;
  131.         return $this;
  132.     }
  133.     public function getImage1(): ?string
  134.     {
  135.         return $this->image1;
  136.     }
  137.     public function setImage1(?string $image1): self
  138.     {
  139.         $this->image1 $image1;
  140.         return $this;
  141.     }
  142.     public function getImageFile1()
  143.     {
  144.         return $this->imageFile1;
  145.     }
  146.     public function setImageFile1($imageFile1)
  147.     {
  148.         $this->imageFile1 $imageFile1;
  149.         return $this;
  150.     }
  151.     public function getVideoLink1(): ?string
  152.     {
  153.         return $this->videoLink1;
  154.     }
  155.     public function setVideoLink1(?string $videoLink1): self
  156.     {
  157.         $this->videoLink1 $videoLink1;
  158.         return $this;
  159.     }
  160.     public function getTitle2(): ?string
  161.     {
  162.         return $this->title2;
  163.     }
  164.     public function setTitle2(?string $title2): self
  165.     {
  166.         $this->title2 $title2;
  167.         return $this;
  168.     }
  169.     public function getSubTitle2(): ?string
  170.     {
  171.         return $this->subTitle2;
  172.     }
  173.     public function setSubTitle2(?string $subTitle2): self
  174.     {
  175.         $this->subTitle2 $subTitle2;
  176.         return $this;
  177.     }
  178.     public function getImage2(): ?string
  179.     {
  180.         return $this->image2;
  181.     }
  182.     public function setImage2(?string $image2): self
  183.     {
  184.         $this->image2 $image2;
  185.         return $this;
  186.     }
  187.     public function getImageFile2()
  188.     {
  189.         return $this->imageFile2;
  190.     }
  191.     public function setImageFile2($imageFile2)
  192.     {
  193.         $this->imageFile2 $imageFile2;
  194.         return $this;
  195.     }
  196.     public function getSlug(): ?string
  197.     {
  198.         return $this->slug;
  199.     }
  200.     public function setSlug(string $slug): self
  201.     {
  202.         $this->slug $slug;
  203.         return $this;
  204.     }
  205. }