src/Entity/ContactPage.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContactPageRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Symfony\Component\HttpFoundation\File\UploadedFile;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ContactPageRepository::class)
  9.  */
  10. class ContactPage
  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 $address;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $longitude;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $latitude;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $phone;
  34.     /**
  35.      * @ORM\Column(type="string", length=180, nullable=true)
  36.      */
  37.     private $mail;
  38.     /**
  39.      * @ORM\Column(type="string", length=255, nullable=true)
  40.      */
  41.     private $website;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $facebook;
  46.     /**
  47.      * @ORM\Column(type="string", length=255, nullable=true)
  48.      */
  49.     private $twitter;
  50.     /**
  51.      * @ORM\Column(type="string", length=255, nullable=true)
  52.      */
  53.     private $linkedin;
  54.     /**
  55.      * @ORM\Column(type="string", length=255, nullable=true)
  56.      */
  57.     private $youtube;
  58.     /**
  59.      * @ORM\Column(type="string", length=255, nullable=true)
  60.      */
  61.     private $instagram;
  62.     /**
  63.      * @ORM\Column(type="string", length=255, nullable=true)
  64.      */
  65.     private $office;
  66.     /**
  67.      * @ORM\Column(type="text", nullable=true)
  68.      */
  69.     private $description;
  70.     /**
  71.      * @ORM\Column(type="string", length=255, nullable=true)
  72.      */
  73.     private $workingHours;
  74.     /**
  75.      * @ORM\Column(type="string", length=255, nullable=true)
  76.      */
  77.     private $daysOpen;
  78.     /**
  79.      * @ORM\Column(type="string", length=255, nullable=true)
  80.      */
  81.     private $hoursOpen;
  82.     /**
  83.      * @ORM\Column(type="string", length=255, nullable=true)
  84.      */
  85.     private $daysClose;
  86.     /**
  87.      * @ORM\Column(type="string", length=255, nullable=true)
  88.      */
  89.     private $hoursClose;
  90.     /**
  91.      * @ORM\Column(type="string", length=255, nullable=true)
  92.      */
  93.     private $building;
  94.     /**
  95.      * @Assert\Image(maxSize="2M")
  96.      */
  97.     private $file;
  98.     public function getId(): ?int
  99.     {
  100.         return $this->id;
  101.     }
  102.     public function getAddress(): ?string
  103.     {
  104.         return $this->address;
  105.     }
  106.     public function setAddress(string $address): self
  107.     {
  108.         $this->address $address;
  109.         return $this;
  110.     }
  111.     public function getLongitude(): ?string
  112.     {
  113.         return $this->longitude;
  114.     }
  115.     public function setLongitude(?string $longitude): self
  116.     {
  117.         $this->longitude $longitude;
  118.         return $this;
  119.     }
  120.     public function getLatitude(): ?string
  121.     {
  122.         return $this->latitude;
  123.     }
  124.     public function setLatitude(?string $latitude): self
  125.     {
  126.         $this->latitude $latitude;
  127.         return $this;
  128.     }
  129.     public function getPhone(): ?string
  130.     {
  131.         return $this->phone;
  132.     }
  133.     public function setPhone(?string $phone): self
  134.     {
  135.         $this->phone $phone;
  136.         return $this;
  137.     }
  138.     public function getMail(): ?string
  139.     {
  140.         return $this->mail;
  141.     }
  142.     public function setMail(?string $mail): self
  143.     {
  144.         $this->mail $mail;
  145.         return $this;
  146.     }
  147.     public function getWebsite(): ?string
  148.     {
  149.         return $this->website;
  150.     }
  151.     public function setWebsite(?string $website): self
  152.     {
  153.         $this->website $website;
  154.         return $this;
  155.     }
  156.     public function getFacebook(): ?string
  157.     {
  158.         return $this->facebook;
  159.     }
  160.     public function setFacebook(?string $facebook): self
  161.     {
  162.         $this->facebook $facebook;
  163.         return $this;
  164.     }
  165.     public function getTwitter(): ?string
  166.     {
  167.         return $this->twitter;
  168.     }
  169.     public function setTwitter(?string $twitter): self
  170.     {
  171.         $this->twitter $twitter;
  172.         return $this;
  173.     }
  174.     public function getLinkedin(): ?string
  175.     {
  176.         return $this->linkedin;
  177.     }
  178.     public function setLinkedin(?string $linkedin): self
  179.     {
  180.         $this->linkedin $linkedin;
  181.         return $this;
  182.     }
  183.     public function getYoutube(): ?string
  184.     {
  185.         return $this->youtube;
  186.     }
  187.     public function setYoutube(?string $youtube): self
  188.     {
  189.         $this->youtube $youtube;
  190.         return $this;
  191.     }
  192.     public function getInstagram(): ?string
  193.     {
  194.         return $this->instagram;
  195.     }
  196.     public function setInstagram(?string $instagram): self
  197.     {
  198.         $this->instagram $instagram;
  199.         return $this;
  200.     }
  201.     public function getOffice(): ?string
  202.     {
  203.         return $this->office;
  204.     }
  205.     public function setOffice(?string $office): self
  206.     {
  207.         $this->office $office;
  208.         return $this;
  209.     }
  210.     public function getDescription(): ?string
  211.     {
  212.         return $this->description;
  213.     }
  214.     public function setDescription(?string $description): self
  215.     {
  216.         $this->description $description;
  217.         return $this;
  218.     }
  219.     public function getWorkingHours(): ?string
  220.     {
  221.         return $this->workingHours;
  222.     }
  223.     public function setWorkingHours(?string $workingHours): self
  224.     {
  225.         $this->workingHours $workingHours;
  226.         return $this;
  227.     }
  228.     public function getDaysOpen(): ?string
  229.     {
  230.         return $this->daysOpen;
  231.     }
  232.     public function setDaysOpen(?string $daysOpen): self
  233.     {
  234.         $this->daysOpen $daysOpen;
  235.         return $this;
  236.     }
  237.     public function getHoursOpen(): ?string
  238.     {
  239.         return $this->hoursOpen;
  240.     }
  241.     public function setHoursOpen(?string $hoursOpen): self
  242.     {
  243.         $this->hoursOpen $hoursOpen;
  244.         return $this;
  245.     }
  246.     public function getDaysClose(): ?string
  247.     {
  248.         return $this->daysClose;
  249.     }
  250.     public function setDaysClose(?string $daysClose): self
  251.     {
  252.         $this->daysClose $daysClose;
  253.         return $this;
  254.     }
  255.     public function getHoursClose(): ?string
  256.     {
  257.         return $this->hoursClose;
  258.     }
  259.     public function setHoursClose(?string $hoursClose): self
  260.     {
  261.         $this->hoursClose $hoursClose;
  262.         return $this;
  263.     }
  264.     public function getBuilding(): ?string
  265.     {
  266.         return $this->building;
  267.     }
  268.     public function setBuilding(?string $building): self
  269.     {
  270.         $this->building $building;
  271.         return $this;
  272.     }
  273.     public function getFile()
  274.     {
  275.         return $this->file;
  276.     }
  277.     public function setFile($file)
  278.     {
  279.         $this->file $file;
  280.         return $this;
  281.     }
  282. }