src/Entity/PageModule.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_module")
  9.  * @ORM\Entity()
  10.  */
  11. class PageModule
  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\ManyToOne(targetEntity="Module")
  23.      */
  24.     private $module;
  25.     /**
  26.      * @ORM\ManyToOne(targetEntity="Page")
  27.      */
  28.     private $page;
  29.     /**
  30.      * @ORM\Column(type="integer", nullable=true)
  31.      */
  32.     private $position;
  33.     /**
  34.      * @ORM\Column(type="boolean", nullable=true)
  35.      */
  36.     private $active;
  37.     public function __construct()
  38.     {
  39.         $this->active true;
  40.     }
  41.     /**
  42.      * @return mixed
  43.      */
  44.     public function getId()
  45.     {
  46.         return $this->id;
  47.     }
  48.     /**
  49.      * @return mixed
  50.      */
  51.     public function getModule()
  52.     {
  53.         return $this->module;
  54.     }
  55.     /**
  56.      * @param mixed $module
  57.      */
  58.     public function setModule($module): void
  59.     {
  60.         $this->module $module;
  61.     }
  62.     /**
  63.      * @return mixed
  64.      */
  65.     public function getPage()
  66.     {
  67.         return $this->page;
  68.     }
  69.     /**
  70.      * @param mixed $page
  71.      */
  72.     public function setPage($page): void
  73.     {
  74.         $this->page $page;
  75.     }
  76.     /**
  77.      * @return mixed
  78.      */
  79.     public function getPosition()
  80.     {
  81.         return $this->position;
  82.     }
  83.     /**
  84.      * @param mixed $position
  85.      */
  86.     public function setPosition($position): void
  87.     {
  88.         $this->position $position;
  89.     }
  90.     /**
  91.      * @return mixed
  92.      */
  93.     public function getActive()
  94.     {
  95.         return $this->active;
  96.     }
  97.     /**
  98.      * @param mixed $active
  99.      */
  100.     public function setActive($active): void
  101.     {
  102.         $this->active $active;
  103.     }
  104. }