1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-10 18:51:02 +00:00

Integrate graby

This commit is contained in:
Jeremy Benoist 2015-08-24 12:27:17 +02:00
parent 8c55a9e6c9
commit fad316151c
10 changed files with 58 additions and 180 deletions

View file

@ -108,6 +108,13 @@ class Entry
*/
private $domainName;
/**
* @var string
*
* @ORM\Column(name="preview_picture", type="text", nullable=true)
*/
private $previewPicture;
/**
* @var bool
*
@ -419,4 +426,29 @@ class Entry
{
$this->tags->removeElement($tag);
}
/**
* Set previewPicture
*
* @param string $previewPicture
*
* @return Entry
*/
public function setPreviewPicture($previewPicture)
{
$this->previewPicture = $previewPicture;
return $this;
}
/**
* Get previewPicture
*
* @return string
*/
public function getPreviewPicture()
{
return $this->previewPicture;
}
}