mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-10 18:51:02 +00:00
Integrate graby
This commit is contained in:
parent
8c55a9e6c9
commit
fad316151c
10 changed files with 58 additions and 180 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue