wallabag/src/Wallabag/CoreBundle/Entity/Entries.php

418 lines
6.9 KiB
PHP
Raw Normal View History

2015-01-22 16:18:56 +00:00
<?php
namespace Wallabag\CoreBundle\Entity;
2015-01-22 16:18:56 +00:00
use Doctrine\ORM\Mapping as ORM;
2015-01-23 13:58:17 +00:00
use Symfony\Component\Validator\Constraints as Assert;
2015-01-22 16:18:56 +00:00
/**
* Entries
*
* @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\EntriesRepository")
2015-01-22 16:18:56 +00:00
* @ORM\Table(name="entries")
2015-02-04 21:25:44 +00:00
* @ORM\HasLifecycleCallbacks()
2015-01-31 14:14:10 +00:00
*
2015-01-22 16:18:56 +00:00
*/
class Entries
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=true)
* @ORM\Id
2015-02-04 21:25:44 +00:00
* @ORM\GeneratedValue(strategy="AUTO")
2015-01-22 16:18:56 +00:00
*/
2015-02-04 21:25:44 +00:00
private $id = null;
2015-01-22 16:18:56 +00:00
/**
* @var string
*
* @ORM\Column(name="title", type="text", nullable=true)
*/
private $title;
/**
* @var string
*
2015-01-23 13:58:17 +00:00
* @Assert\NotBlank()
2015-01-22 16:18:56 +00:00
* @ORM\Column(name="url", type="text", nullable=true)
*/
private $url;
/**
* @var boolean
2015-01-22 16:18:56 +00:00
*
2015-02-04 21:25:44 +00:00
* @ORM\Column(name="is_read", type="boolean", nullable=true, options={"default" = false})
2015-01-22 16:18:56 +00:00
*/
2015-02-04 21:25:44 +00:00
private $isRead = false;
2015-01-22 16:18:56 +00:00
/**
* @var boolean
2015-01-22 16:18:56 +00:00
*
2015-02-04 21:25:44 +00:00
* @ORM\Column(name="is_fav", type="boolean", nullable=true, options={"default" = false})
2015-01-22 16:18:56 +00:00
*/
2015-02-04 21:25:44 +00:00
private $isFav = false;
2015-01-22 16:18:56 +00:00
/**
* @var boolean
2015-01-22 16:18:56 +00:00
*
2015-02-04 21:25:44 +00:00
* @ORM\Column(name="is_deleted", type="boolean", nullable=true, options={"default" = false})
2015-01-22 16:18:56 +00:00
*/
2015-02-04 21:25:44 +00:00
private $isDeleted = false;
2015-01-22 16:18:56 +00:00
/**
* @var string
*
* @ORM\Column(name="content", type="text", nullable=true)
2015-01-22 16:18:56 +00:00
*/
private $content;
2015-01-22 16:18:56 +00:00
2015-02-04 21:25:44 +00:00
/**
* @var date
*
* @ORM\Column(name="created_at", type="datetime", nullable=true)
*/
private $createdAt;
/**
* @var date
*
* @ORM\Column(name="updated_at", type="datetime", nullable=true)
*/
private $updatedAt;
2015-02-04 16:54:23 +00:00
/**
* @var string
*
* @ORM\Column(name="user_id", type="decimal", precision=10, scale=0, nullable=true)
2015-02-04 16:54:23 +00:00
*/
private $userId;
2015-02-04 16:54:23 +00:00
2015-02-04 21:25:44 +00:00
/**
* @var string
*
* @ORM\Column(name="comments", type="text", nullable=true)
*/
private $comments;
/**
* @var string
*
* @ORM\Column(name="mimetype", type="text", nullable=true)
*/
private $mimetype;
/**
* @var integer
*
* @ORM\Column(name="reading_type", type="integer", nullable=true)
*/
private $readingTime;
/**
* @var string
*
* @ORM\Column(name="domain_name", type="text", nullable=true)
*/
private $domainName;
/**
* @var boolean
*
* @ORM\Column(name="is_public", type="boolean", nullable=true, options={"default" = false})
*/
private $isPublic;
2015-01-22 16:18:56 +00:00
/**
* Get id
*
2015-01-31 18:09:34 +00:00
* @return integer
2015-01-22 16:18:56 +00:00
*/
public function getId()
{
return $this->id;
}
/**
* Set title
*
2015-01-31 18:09:34 +00:00
* @param string $title
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Get title
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getTitle()
{
return $this->title;
}
/**
* Set url
*
2015-01-31 18:09:34 +00:00
* @param string $url
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setUrl($url)
{
$this->url = $url;
return $this;
}
/**
* Get url
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getUrl()
{
return $this->url;
}
/**
* Set isRead
*
2015-01-31 18:09:34 +00:00
* @param string $isRead
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setRead($isRead)
2015-01-22 16:18:56 +00:00
{
$this->isRead = $isRead;
return $this;
}
/**
* Get isRead
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function isRead()
2015-01-22 16:18:56 +00:00
{
return $this->isRead;
}
2015-01-23 11:45:24 +00:00
public function toggleArchive()
{
$this->isRead = $this->getIsRead() ^ 1;
2015-01-31 18:09:34 +00:00
2015-01-23 11:45:24 +00:00
return $this;
}
2015-01-22 16:18:56 +00:00
/**
* Set isFav
*
2015-01-31 18:09:34 +00:00
* @param string $isFav
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setFav($isFav)
2015-01-22 16:18:56 +00:00
{
$this->isFav = $isFav;
return $this;
}
/**
* Get isFav
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function isFav()
2015-01-22 16:18:56 +00:00
{
return $this->isFav;
}
2015-01-23 11:45:24 +00:00
public function toggleStar()
{
$this->isFav = $this->getIsFav() ^ 1;
return $this;
}
2015-01-22 16:18:56 +00:00
/**
* Set content
*
2015-01-31 18:09:34 +00:00
* @param string $content
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setContent($content)
{
$this->content = $content;
return $this;
}
/**
* Get content
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getContent()
{
return $this->content;
}
/**
* Set userId
*
2015-01-31 18:09:34 +00:00
* @param string $userId
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setUserId($userId)
{
$this->userId = $userId;
return $this;
}
/**
* Get userId
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getUserId()
{
return $this->userId;
}
2015-02-04 16:54:23 +00:00
/**
* @return string
*/
public function isDeleted()
{
return $this->isDeleted;
}
/**
* @param string $isDeleted
*/
public function setDeleted($isDeleted)
{
$this->isDeleted = $isDeleted;
}
2015-02-04 21:25:44 +00:00
/**
* @return mixed
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* @param mixed $createdAt
* @ORM\PrePersist
*/
public function setCreatedAt()
{
$this->createdAt = new \DateTime();
}
/**
* @return string
*/
public function getUpdatedAt()
{
return $this->updatedAt;
}
/**
* @param string $updatedAt
* @ORM\PreUpdate
*/
public function setUpdatedAt()
{
$this->updatedAt = new \DateTime();
}
/**
* @return string
*/
public function getComments()
{
return $this->comments;
}
/**
* @param string $comments
*/
public function setComments($comments)
{
$this->comments = $comments;
}
/**
* @return string
*/
public function getMimetype()
{
return $this->mimetype;
}
/**
* @param string $mimetype
*/
public function setMimetype($mimetype)
{
$this->mimetype = $mimetype;
}
/**
* @return int
*/
public function getReadingTime()
{
return $this->readingTime;
}
/**
* @param int $readingTime
*/
public function setReadingTime($readingTime)
{
$this->readingTime = $readingTime;
}
/**
* @return string
*/
public function getDomainName()
{
return $this->domainName;
}
/**
* @param string $domainName
*/
public function setDomainName($domainName)
{
$this->domainName = $domainName;
}
/**
* @return boolean
*/
public function isPublic()
2015-02-04 21:25:44 +00:00
{
return $this->isPublic;
}
/**
* @param boolean $isPublic
*/
public function setPublic($isPublic)
2015-02-04 21:25:44 +00:00
{
$this->isPublic = $isPublic;
}
2015-01-22 16:18:56 +00:00
}