src/Entity/Menu/WebsiteParents.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Menu;
  3. use Doctrine\DBAL\Types\Types;
  4. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * Website Parents
  9.  *
  10.  * @ORM\Table("menu_website_parents")
  11.  * @ORM\Entity(repositoryClass="App\Repository\Menu\WebsiteParentsRepository")
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class WebsiteParents
  15. {
  16.     /**
  17.      * @var integer
  18.      *
  19.      * @ORM\Column(name="id", type="integer")
  20.      * @ORM\Id
  21.      * @ORM\GeneratedValue(strategy="AUTO")
  22.      */
  23.     protected $id;
  24.     /**
  25.      * @var string
  26.      *
  27.      * @ORM\Column(name="created_at", type="datetime", nullable=true, options={"comment":"Date de création"})
  28.      */
  29.     private $createdAt;
  30.     /**
  31.      * @var string
  32.      *
  33.      * @ORM\Column(name="title", type="string", length=255, nullable=true)
  34.      */
  35.     private $title;
  36.     /**
  37.      * @var string
  38.      *
  39.      * @ORM\Column(name="link", type="string", length=255, nullable=true)
  40.      */
  41.     private $link;
  42.     /**
  43.      * @var string
  44.      *
  45.      * @ORM\Column(name="visibility", type="boolean", nullable=true)
  46.      */
  47.     private $visibility;
  48.     /**
  49.      * @var string
  50.      *
  51.      * @ORM\Column(name="target_blank", type="boolean", nullable=true)
  52.      */
  53.     private $targetBlank;
  54.     /**
  55.      * @var string
  56.      *
  57.      * @ORM\Column(name="type", type="string", length=255, nullable=true)
  58.      */
  59.     private $type;
  60.     /**
  61.      * @var string $filename
  62.      *
  63.      * @ORM\Column(name="sequence", type="integer", length=11, nullable=true)
  64.      */
  65.     protected $sequence;
  66.     /**
  67.      * @var string
  68.      *
  69.      * @ORM\Column(name="typeButton", type="string", length=255, nullable=true)
  70.      */
  71.     private $typeButton;
  72.     /**
  73.      * @var string
  74.      *
  75.      * @ORM\Column(name="visibilityUser", type="boolean", nullable=true)
  76.      */
  77.     private $visibilityUser;
  78.     /**
  79.      * @var string
  80.      *
  81.      * @ORM\Column(name="private", type="boolean", nullable=true)
  82.      */
  83.     private $private;
  84.     /**
  85.      * @var string
  86.      *
  87.      * @ORM\Column(name="no_private", type="boolean", nullable=true)
  88.      */
  89.     private $noPrivate;
  90.     /**
  91.      * @ORM\PrePersist
  92.      */
  93.     public function setCreatedAtValue(): void
  94.     {
  95.         $this->setCreatedAt(new \DateTime("now"));
  96.     }
  97.     /**
  98.      * @ORM\PreUpdate
  99.      */
  100.     public function setUpdatedAtValue(): void
  101.     {
  102.     }
  103.     public function __toString()
  104.     {
  105.         return $this->title;
  106.     }
  107.     public function getId(): ?int
  108.     {
  109.         return $this->id;
  110.     }
  111.     public function getCreatedAt(): ?\DateTimeInterface
  112.     {
  113.         return $this->createdAt;
  114.     }
  115.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  116.     {
  117.         $this->createdAt $createdAt;
  118.         return $this;
  119.     }
  120.     public function getTitle(): ?string
  121.     {
  122.         return $this->title;
  123.     }
  124.     public function setTitle(?string $title): self
  125.     {
  126.         $this->title $title;
  127.         return $this;
  128.     }
  129.     public function getLink(): ?string
  130.     {
  131.         return $this->link;
  132.     }
  133.     public function setLink(?string $link): self
  134.     {
  135.         $this->link $link;
  136.         return $this;
  137.     }
  138.     public function getSequence(): ?int
  139.     {
  140.         return $this->sequence;
  141.     }
  142.     public function setSequence(?int $sequence): self
  143.     {
  144.         $this->sequence $sequence;
  145.         return $this;
  146.     }
  147.     public function getType(): ?string
  148.     {
  149.         return $this->type;
  150.     }
  151.     public function setType(?string $type): self
  152.     {
  153.         $this->type $type;
  154.         return $this;
  155.     }
  156.     public function getTargetBlank(): ?bool
  157.     {
  158.         return $this->targetBlank;
  159.     }
  160.     public function setTargetBlank(?bool $targetBlank): self
  161.     {
  162.         $this->targetBlank $targetBlank;
  163.         return $this;
  164.     }
  165.     public function getTypeButton(): ?string
  166.     {
  167.         return $this->typeButton;
  168.     }
  169.     public function setTypeButton(?string $typeButton): self
  170.     {
  171.         $this->typeButton $typeButton;
  172.         return $this;
  173.     }
  174.     public function getVisibilityUser(): ?bool
  175.     {
  176.         return $this->visibilityUser;
  177.     }
  178.     public function setVisibilityUser(?bool $visibilityUser): self
  179.     {
  180.         $this->visibilityUser $visibilityUser;
  181.         return $this;
  182.     }
  183.     public function getVisibility(): ?bool
  184.     {
  185.         return $this->visibility;
  186.     }
  187.     public function setVisibility(?bool $visibilityUser): self
  188.     {
  189.         $this->visibility $visibilityUser;
  190.         return $this;
  191.     }
  192.     public function getNoPrivate(): ?bool
  193.     {
  194.         return $this->noPrivate;
  195.     }
  196.     public function setNoPrivate(?bool $visibilityUser): self
  197.     {
  198.         $this->noPrivate $visibilityUser;
  199.         return $this;
  200.     }
  201.     public function getPrivate(): ?bool
  202.     {
  203.         return $this->private;
  204.     }
  205.     public function setPrivate(?bool $visibilityUser): self
  206.     {
  207.         $this->private $visibilityUser;
  208.         return $this;
  209.     }
  210.     public function isVisibility(): ?bool
  211.     {
  212.         return $this->visibility;
  213.     }
  214.     public function isTargetBlank(): ?bool
  215.     {
  216.         return $this->targetBlank;
  217.     }
  218.     public function isVisibilityUser(): ?bool
  219.     {
  220.         return $this->visibilityUser;
  221.     }
  222.     public function isPrivate(): ?bool
  223.     {
  224.         return $this->private;
  225.     }
  226.     public function isNoPrivate(): ?bool
  227.     {
  228.         return $this->noPrivate;
  229.     }
  230. }