123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- namespace Uploadable\Fixture\Entity;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- use Doctrine\Common\Collections\ArrayCollection;
- /**
- * @ORM\Entity
- * @Gedmo\Uploadable()
- */
- class File
- {
- /**
- * @ORM\Column(name="id", type="integer")
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @ORM\Column(name="title", type="string", nullable=true)
- */
- private $title;
- /**
- * @ORM\Column(name="path", type="string", nullable=true)
- * @Gedmo\UploadableFilePath
- */
- private $filePath;
- /**
- * @ORM\ManyToOne(targetEntity="Article", inversedBy="files")
- * @ORM\JoinColumn(name="article_id", referencedColumnName="id")
- */
- private $article;
- public function getId()
- {
- return $this->id;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setFilePath($filePath)
- {
- $this->filePath = $filePath;
- }
- public function getFilePath()
- {
- return $this->filePath;
- }
- public function setArticle(Article $article)
- {
- $this->article = $article;
- }
- public function getArticle()
- {
- return $this->article;
- }
- /**
- * @Gedmo\UploadablePath
- */
- public function getPath()
- {
- return __DIR__.'/../../../../temp/uploadable';
- }
- /**
- * @Gedmo\UploadableFilesArrayIndex
- */
- public function getFilesArrayIndex()
- {
- return '[file]';
- }
- }
|