src/Entity/JobPDF.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobPDF
  5. {
  6.     /**
  7.      * @var integer
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var \App\Entity\Job
  12.      */
  13.     private $job;    
  14.     
  15.     /**
  16.      * @var string
  17.      */
  18.     private $filename;
  19.     /**
  20.      * @var \App\Entity\FilePath
  21.      */
  22.     private $filePath;
  23.     /**
  24.      * Get id
  25.      *
  26.      * @return integer
  27.      */
  28.     public function getId()
  29.     {
  30.         return $this->id;
  31.     }
  32.     /**
  33.      * Set filename
  34.      *
  35.      * @param string $filename
  36.      *
  37.      * @return JobWorkFieldImage
  38.      */
  39.     public function setFilename($filename)
  40.     {
  41.         $this->filename $filename;
  42.         return $this;
  43.     }
  44.     /**
  45.      * Get filename
  46.      *
  47.      * @return string
  48.      */
  49.     public function getFilename()
  50.     {
  51.         return $this->filename;
  52.     }
  53.     /**
  54.      * Set filePath
  55.      *
  56.      * @param \App\Entity\FilePath $filePath
  57.      *
  58.      * @return JobWorkFieldImage
  59.      */
  60.     public function setFilePath(\App\Entity\FilePath $filePath null)
  61.     {
  62.         $this->filePath $filePath;
  63.         return $this;
  64.     }
  65.     /**
  66.      * Get filePath
  67.      *
  68.      * @return \App\Entity\FilePath
  69.      */
  70.     public function getFilePath()
  71.     {
  72.         return $this->filePath;
  73.     }
  74.     /**
  75.      * Set job.
  76.      *
  77.      * @param \App\Entity\Job|null $job
  78.      *
  79.      * @return Job
  80.      */
  81.     public function setJob(\App\Entity\Job $job null)
  82.     {
  83.         $this->job $job;
  84.         return $this;
  85.     }
  86.     /**
  87.      * Get job.
  88.      *
  89.      * @return \App\Entity\Job|null
  90.      */
  91.     public function getJob()
  92.     {
  93.         return $this->job;
  94.     }
  95.     
  96.     /**
  97.      * Get name
  98.      *
  99.      * @return string 
  100.      */
  101.     public function getWebPath() {
  102.         return $this->filePath->getPathWeb() . $this->filename;
  103.     }
  104.     /**
  105.      * Get name
  106.      *
  107.      * @return string 
  108.      */
  109.     public function getSymfonyPath() {
  110.         return $this->filePath->getPathSymfony() . $this->filename;
  111.     }    
  112. }