12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?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(pathMethod="getPath")
- */
- class Image
- {
- /**
- * @ORM\Column(name="id", type="integer")
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @ORM\Column(name="title", type="string")
- */
- private $title;
- /**
- * @ORM\Column(name="path", type="string", nullable=true)
- * @Gedmo\UploadableFilePath
- */
- private $filePath;
- /**
- * @ORM\Column(name="size", type="decimal", nullable=true)
- * @Gedmo\UploadableFileSize
- */
- private $size;
- /**
- * @ORM\Column(name="mime_type", type="string", nullable=true)
- * @Gedmo\UploadableFileMimeType
- */
- private $mime;
- 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 getPath()
- {
- return __DIR__.'/../../../../temp/uploadable';
- }
- public function setMime($mime)
- {
- $this->mime = $mime;
- }
- public function getMime()
- {
- return $this->mime;
- }
- public function setSize($size)
- {
- $this->size = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- }
|