src/Entity/Um6p/BlockEvent.php line 25

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Um6p;
  3. use App\Repository\Um6p\BlockEventRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. use Symfony\Component\Validator\Constraints as Assert;
  9. use Symfony\Component\HttpFoundation\File\File;
  10. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  11. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  12. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  13. use Symfony\Component\PropertyAccess\PropertyAccess
  14. /**
  15.  * @ORM\Entity(repositoryClass=BlockEventRepository::class)
  16.  */
  17. class BlockEvent implements TranslatableInterface
  18.     use TranslatableTrait;
  19.     /**
  20.      * @ORM\Id
  21.      * @ORM\GeneratedValue
  22.      * @ORM\Column(type="integer")
  23.      */
  24.     private $id;
  25.     /**
  26.      * @ORM\Column(type="integer", nullable=true)
  27.      */
  28.     private $position;
  29.     /**
  30.      * @ORM\Column(type="boolean", nullable=true)
  31.      */
  32.     private $publier;
  33.  
  34.     /**
  35.      * @ORM\ManyToOne(targetEntity=Event::class, inversedBy="blocks", cascade={"persist"})
  36.      */
  37.     private $event;
  38.     
  39.     protected $translations;
  40.     
  41.     public function __construct()
  42.     {
  43.         $this->translations = new ArrayCollection();
  44.     }
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getPosition(): ?int
  50.     {
  51.         return $this->position;
  52.     }
  53.     public function setPosition(?int $position): self
  54.     {
  55.         $this->position $position;
  56.         return $this;
  57.     }
  58.     public function isPublier(): ?bool
  59.     {
  60.         return $this->publier;
  61.     }
  62.     public function setPublier(?bool $publier): self
  63.     {
  64.         $this->publier $publier;
  65.         return $this;
  66.     }
  67.  
  68.  
  69.     public function getEvent(): ?Event
  70.     {
  71.         return $this->event;
  72.     }
  73.     public function setEvent(?Event $event): self
  74.     {
  75.         $this->event $event;
  76.         return $this;
  77.     }
  78.    
  79.  
  80.    
  81.     public function __call($method$arguments)
  82.     {
  83.         return PropertyAccess::createPropertyAccessor()->getValue($this->translate(), $method);
  84.     }
  85. }