src/Entity/RecDocument.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\DBAL\Types\Types;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. /**
  7. * Document
  8. *
  9. * @ORM\Table(name="rec_document")
  10. * @ORM\Entity(repositoryClass="App\Repository\RecDocumentRepository")
  11. *
  12. */
  13. class RecDocument
  14. {
  15.     /**
  16.     * @var integer
  17.     *
  18.     * @ORM\Column(name="id", type="integer")
  19.     * @ORM\Id
  20.     * @ORM\GeneratedValue(strategy="AUTO")
  21.     */
  22.     private $id;
  23.     /**
  24.     * @Assert\File( maxSize="10M", mimeTypes={"application/pdf", "image/png"} )
  25.     */
  26.     public $file;
  27.     /**
  28.     * @var string
  29.     *
  30.     * @ORM\Column(name="name", type="string", length=255)
  31.     */
  32.     private $name;
  33.     /**
  34.     * @var string
  35.     *
  36.     * @ORM\Column(name="hiddenName", type="string", length=255)
  37.     */
  38.     private $hiddenName;
  39.     /**
  40.     * @ORM\ManyToOne(targetEntity="RecCandidature", inversedBy="document")
  41.     * @ORM\JoinColumn(name="candidature_id", referencedColumnName="id")
  42.     */
  43.     protected $candidature;
  44.     /**
  45.      * @ORM\Column(name="validate", type="boolean")
  46.      */
  47.     protected $validate;
  48.     /**
  49.      * @ORM\Column(name="checked", type="boolean", nullable=true)
  50.      */
  51.     protected $checked;
  52.     /**
  53.      * @ORM\Column(name="ordre", type="integer", nullable=true)
  54.      */
  55.     protected $ordre;
  56.     /**
  57.      * @var \DateTime
  58.      * @ORM\Column(name="date_init", type="datetime", nullable=true)
  59.      */
  60.     protected $dateInit;
  61.     public function __construct()
  62.     {
  63.         $this->validate false;
  64.         $this->dateInit = new \DateTime('now');
  65.     }
  66.     /**
  67.     * Get id
  68.     *
  69.     * @return integer
  70.     */
  71.     public function getId()
  72.     {
  73.     return $this->id;
  74.     }
  75.     /**
  76.     * Set name
  77.     *
  78.     * @param string $name
  79.     * @return RecDocument
  80.     */
  81.     public function setName($name)
  82.     {
  83.     $this->name $name;
  84.     return $this;
  85.     }
  86.     /**
  87.     * Get name
  88.     *
  89.     * @return string
  90.     */
  91.     public function getName()
  92.     {
  93.     return $this->name;
  94.     }
  95.     /**
  96.     * Set path
  97.     *
  98.     * @param string $path
  99.     * @return RecDocument
  100.     */
  101.     public function setHiddenName($hidden)
  102.     {
  103.     $this->hiddenName $hidden;
  104.     return $this;
  105.     }
  106.     /**
  107.     * Get path
  108.     *
  109.     * @return string
  110.     */
  111.     public function getHiddenName()
  112.     {
  113.     return $this->hiddenName;
  114.     }
  115.     public function getAbsolutePath()
  116.     {
  117.         return $this->getUploadRootDir();
  118.     }
  119.     public function getWebPath()
  120.     {
  121.         return "/".$this->getUploadDir().'/'.$this->hiddenName;
  122.     }
  123.     protected function getUploadRootDir()
  124.     {
  125.         return __DIR__.'/../../data/'.$this->getUploadDir();
  126.     }
  127.     public function getUploadDir()
  128.     {
  129.         return 'files';
  130.     }
  131.     public function getThumbnail()
  132.     {
  133.         return ;
  134.     }
  135.     public function remove()
  136.     {
  137.         echo $this->getId();die;
  138.     }
  139.     public function removeFile()
  140.     {
  141.         if(file_exists($this->getUploadRootDir().'/'.$this->hiddenName))
  142.             unlink($this->getUploadRootDir().'/'.$this->hiddenName);
  143.     }
  144.     /**
  145.      * Set candidature
  146.      *
  147.      * @param \App\Entity\RecCandidature $candidature
  148.      * @return RecDocument
  149.      */
  150.     public function setCandidature(\App\Entity\RecCandidature $candidature null)
  151.     {
  152.         $this->candidature $candidature;
  153.         return $this;
  154.     }
  155.     /**
  156.      * Get candidature
  157.      *
  158.      * @return \Dosi\RecrutementBundle\Entity\RecCandidature 
  159.      */
  160.     public function getCandidature()
  161.     {
  162.         return $this->candidature;
  163.     }
  164.     /**
  165.      * Set validate
  166.      *
  167.      * @param boolean $validate
  168.      * @return RecDocument
  169.      */
  170.     public function setValidate($validate)
  171.     {
  172.         $this->validate $validate;
  173.         return $this;
  174.     }
  175.     /**
  176.      * Get validate
  177.      *
  178.      * @return boolean 
  179.      */
  180.     public function getValidate()
  181.     {
  182.         return $this->validate;
  183.     }
  184.     
  185.     /**
  186.      * Set checked
  187.      *
  188.      * @param boolean $checked
  189.      * @return RecDocument
  190.      */
  191.     public function setChecked($checked)
  192.     {
  193.         $this->checked $checked;
  194.         return $this;
  195.     }
  196.     /**
  197.      * Get checked
  198.      *
  199.      * @return boolean 
  200.      */
  201.     public function getChecked()
  202.     {
  203.         return $this->checked;
  204.     }
  205.     public function isValidate(): ?bool
  206.     {
  207.         return $this->validate;
  208.     }
  209.     public function isChecked(): ?bool
  210.     {
  211.         return $this->checked;
  212.     }
  213.     public function getDateInit(): ?\DateTimeInterface
  214.     {
  215.         return $this->dateInit;
  216.     }
  217.     public function setDateInit(?\DateTimeInterface $dateInit): static
  218.     {
  219.         $this->dateInit $dateInit;
  220.         return $this;
  221.     }
  222.     public function getOrdre(): ?int
  223.     {
  224.         return $this->ordre;
  225.     }
  226.     public function setOrdre(?int $ordre): static
  227.     {
  228.         $this->ordre $ordre;
  229.         return $this;
  230.     }
  231. }