src/Entity/PageButton.php line 15

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Entity\Traits\EntitySoftDeletableTrait;
  5. use App\Entity\Traits\EntityTimestampableTrait;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Table(name="page_button")
  9.  * @ORM\Entity()
  10.  */
  11. class PageButton
  12. {
  13.     use EntityTimestampableTrait;
  14.     use EntitySoftDeletableTrait;
  15.     /**
  16.      * @ORM\Id()
  17.      * @ORM\GeneratedValue()
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $title;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, nullable=true)
  27.      */
  28.     private $link;
  29.     /**
  30.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  31.      */
  32.     private $icon;
  33.     /**
  34.      * @ORM\ManyToOne(targetEntity="SonataMediaMedia")
  35.      */
  36.     private $iconPhone;
  37.     /**
  38.      * @ORM\ManyToOne(targetEntity="Page")
  39.      */
  40.     private $page;
  41.     /**
  42.      * @ORM\Column(type="integer", nullable=true)
  43.      */
  44.     private $position;
  45.     /**
  46.      * @ORM\Column(type="boolean", nullable=true)
  47.      */
  48.     private $active;
  49.     public function __construct()
  50.     {
  51.         $this->active true;
  52.         $this->position 1;
  53.     }
  54.     /**
  55.      * @return mixed
  56.      */
  57.     public function getId()
  58.     {
  59.         return $this->id;
  60.     }
  61.     /**
  62.      * @return mixed
  63.      */
  64.     public function getPage()
  65.     {
  66.         return $this->page;
  67.     }
  68.     /**
  69.      * @param mixed $page
  70.      */
  71.     public function setPage($page): void
  72.     {
  73.         $this->page $page;
  74.     }
  75.     /**
  76.      * @return mixed
  77.      */
  78.     public function getPosition()
  79.     {
  80.         return $this->position;
  81.     }
  82.     /**
  83.      * @param mixed $position
  84.      */
  85.     public function setPosition($position): void
  86.     {
  87.         $this->position $position;
  88.     }
  89.     /**
  90.      * @return mixed
  91.      */
  92.     public function getActive()
  93.     {
  94.         return $this->active;
  95.     }
  96.     /**
  97.      * @param mixed $active
  98.      */
  99.     public function setActive($active): void
  100.     {
  101.         $this->active $active;
  102.     }
  103.     /**
  104.      * @return mixed
  105.      */
  106.     public function getTitle()
  107.     {
  108.         return $this->title;
  109.     }
  110.     /**
  111.      * @param mixed $title
  112.      */
  113.     public function setTitle($title): void
  114.     {
  115.         $this->title $title;
  116.     }
  117.     /**
  118.      * @return mixed
  119.      */
  120.     public function getLink()
  121.     {
  122.         return $this->link;
  123.     }
  124.     /**
  125.      * @param mixed $link
  126.      */
  127.     public function setLink($link): void
  128.     {
  129.         $this->link $link;
  130.     }
  131.     /**
  132.      * @return mixed
  133.      */
  134.     public function getIcon()
  135.     {
  136.         return $this->icon;
  137.     }
  138.     /**
  139.      * @param mixed $icon
  140.      */
  141.     public function setIcon($icon): void
  142.     {
  143.         $this->icon $icon;
  144.     }
  145.     /**
  146.      * @return mixed
  147.      */
  148.     public function getIconPhone()
  149.     {
  150.         return $this->iconPhone;
  151.     }
  152.     /**
  153.      * @param mixed $iconPhone
  154.      */
  155.     public function setIconPhone($iconPhone): void
  156.     {
  157.         $this->iconPhone $iconPhone;
  158.     }
  159. }